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

2
journalmarks/templates/login.html

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

11
journalmarks/templates/logout.html

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

Loading…
Cancel
Save