Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix site info style #342

Merged
merged 1 commit into from
Apr 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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