Skip to content

Commit 2b2516a

Browse files
chore: fix site info style
1 parent 1f4fd84 commit 2b2516a

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

pythoncms/modules/box__default/info/templates/info/dashboard.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,26 @@
1111
<div class="card-body">
1212
<form method="post">
1313
Site title<br>
14-
<input name="site_title" value="{{get_setting('SITE_TITLE')}}">
14+
<input
15+
class="form-control"
16+
name="site_title" value="{{get_setting('SITE_TITLE')}}">
1517
<br>
1618
Site description<br>
1719
<textarea
1820
id=""
1921
cols="30"
2022
rows="10"
2123
name="site_description"
24+
class="form-control"
25+
2226
>{{get_setting('SITE_DESCRIPTION')}}</textarea>
2327
<br>
24-
<input type="hidden" name="csrf_token" value="{{csrf_token()}}">
25-
<button type="submit">Submit</button>
28+
<input type="hidden" name="csrf_token" value="{{csrf_token()}}"
29+
>
30+
<button
31+
type="submit"
32+
class="btn btn-primary"
33+
>Submit</button>
2634

2735
</form>
2836
</div>

0 commit comments

Comments
 (0)