diff options
author | Vitaly Takmazov | 2024-03-29 20:26:53 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-03-29 22:08:34 +0300 |
commit | 08c9829c42ff1363fd2a63f1f55afc01d9ef2f29 (patch) | |
tree | 9fe8c3ce984a68bdb42429cd1516054d0b0010b4 /src/main/resources/templates/views | |
parent | 04f5d65e7ade5ffbfe363efb7ebcd1151f8b68fd (diff) |
Layout bugfixes
Diffstat (limited to 'src/main/resources/templates/views')
9 files changed, 9 insertions, 9 deletions
diff --git a/src/main/resources/templates/views/404.html b/src/main/resources/templates/views/404.html index 02a790e6..d3a2367e 100644 --- a/src/main/resources/templates/views/404.html +++ b/src/main/resources/templates/views/404.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} - <article> + <article class="page-content"> <h1>Страница не найдена</h1> <p>Сожалеем, но страницу с этим адресом удалил её автор, либо её никогда не существовало.</p> </article> diff --git a/src/main/resources/templates/views/help.html b/src/main/resources/templates/views/help.html index 169ccb3f..5b16cf6e 100644 --- a/src/main/resources/templates/views/help.html +++ b/src/main/resources/templates/views/help.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> {{ content | raw }} </article> {% endblock %} diff --git a/src/main/resources/templates/views/settings_about.html b/src/main/resources/templates/views/settings_about.html index ea906e0c..274e2c7c 100644 --- a/src/main/resources/templates/views/settings_about.html +++ b/src/main/resources/templates/views/settings_about.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <form action="/settings" method="POST" enctype="multipart/form-data"> <p>Full name: <input type="text" name="fullname" value="{{ userinfo.fullName }}"/></p> <p>Country: <input type="text" name="country" value="{{ userinfo.country }}"/></p> diff --git a/src/main/resources/templates/views/settings_auth-email.html b/src/main/resources/templates/views/settings_auth-email.html index e906d704..b7b46687 100644 --- a/src/main/resources/templates/views/settings_auth-email.html +++ b/src/main/resources/templates/views/settings_auth-email.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <p>{{ result }}</p><p><a href="/settings">Settings</a>.</p> </article> {% endblock %} diff --git a/src/main/resources/templates/views/settings_main.html b/src/main/resources/templates/views/settings_main.html index 090d64a2..8937f507 100644 --- a/src/main/resources/templates/views/settings_main.html +++ b/src/main/resources/templates/views/settings_main.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <h1>Settings</h1> {%if not visitor.verified %} <h2 style="color: red; padding: 20px;">Verify your account by adding email or social account</h2> diff --git a/src/main/resources/templates/views/settings_password.html b/src/main/resources/templates/views/settings_password.html index 4a9c403a..91ac08d5 100644 --- a/src/main/resources/templates/views/settings_password.html +++ b/src/main/resources/templates/views/settings_password.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <fieldset> <legend>Changing your password</legend> <form action="/settings" method="post"> diff --git a/src/main/resources/templates/views/settings_privacy.html b/src/main/resources/templates/views/settings_privacy.html index 83b87b93..20612b8b 100644 --- a/src/main/resources/templates/views/settings_privacy.html +++ b/src/main/resources/templates/views/settings_privacy.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <p>Privacy</p> </article> {% endblock %} diff --git a/src/main/resources/templates/views/settings_result.html b/src/main/resources/templates/views/settings_result.html index d87a5ea6..d6d05986 100644 --- a/src/main/resources/templates/views/settings_result.html +++ b/src/main/resources/templates/views/settings_result.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <p>{{ result | raw }}</p> </article> {% endblock %} diff --git a/src/main/resources/templates/views/signup_result.html b/src/main/resources/templates/views/signup_result.html index b204e1b8..fcdda020 100644 --- a/src/main/resources/templates/views/signup_result.html +++ b/src/main/resources/templates/views/signup_result.html @@ -1,6 +1,6 @@ {% extends "layouts/default" %} {% block content %} -<article> +<article class="page-content"> <p>{{ result | raw }}</p> </article> {% endblock %}
\ No newline at end of file |