Skip to content

Commit

Permalink
chore: fix site info style
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdur-rahmaanJ committed Apr 12, 2024
1 parent 1f4fd84 commit b3cf9b0
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pythoncms/modules/box__default/info/templates/info/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,26 @@
<div class="card-body">
<form method="post">
Site title<br>
<input name="site_title" value="{{get_setting('SITE_TITLE')}}">
<input
class="form-control"
name="site_title" value="{{get_setting('SITE_TITLE')}}">
<br>
Site description<br>
<textarea
id=""
cols="30"
rows="10"
name="site_description"
class="form-control"

>{{get_setting('SITE_DESCRIPTION')}}</textarea>
<br>
<input type="hidden" name="csrf_token" value="{{csrf_token()}}">
<button type="submit">Submit</button>
<input type="hidden" name="csrf_token" value="{{csrf_token()}}"
>
<button
type="submit"
class="btn btn-primary"
>Submit</button>

</form>
</div>
Expand Down

0 comments on commit b3cf9b0

Please sign in to comment.