Browse Source

some further style

master
Fr3deric 6 years ago
parent
commit
1088f9bbb3
  1. 4
      journalmarks/templates/base.html
  2. 2
      journalmarks/templates/login.html
  3. 11
      journalmarks/templates/logout.html

4
journalmarks/templates/base.html

@ -14,6 +14,7 @@ body {
h1 { h1 {
text-align: center; text-align: center;
font-weight: normal; font-weight: normal;
text-shadow: 1px 1px 1px lightgrey;
} }
a, a:visited { a, a:visited {
@ -32,6 +33,9 @@ a:hover {
display: none; display: none;
color: #ab0000; color: #ab0000;
} }
p {
text-align: justify;
}
</style> </style>
{% block script %}{% endblock %} {% block script %}{% endblock %}

2
journalmarks/templates/login.html

@ -30,7 +30,7 @@ else document.attachEvent('onreadystatechange', function(){
}); });
</script> </script>
<style> <style>
.login-form { .login-form, .login-form p {
text-align: center; text-align: center;
} }
#username, #password { #username, #password {

11
journalmarks/templates/logout.html

@ -11,7 +11,16 @@ else document.attachEvent('onreadystatechange', function(){
if (document.readyState=='complete') run(); if (document.readyState=='complete') run();
}); });
</script> </script>
<style>
p {
text-align: center;
}
</style>
{% endblock %} {% endblock %}
{% block body %} {% block body %}
Goodbye! <h1>Goodbye!</h1>
<p>
<a href="{{ url_for('journalmarks.login') }}">Log in again</a>
</p>
{% endblock %} {% endblock %}

Loading…
Cancel
Save