add working login page / remember me / clock

This commit is contained in:
Lukas 2021-09-13 22:03:16 +02:00
parent c7a613968c
commit 8d9f1603fe
7 changed files with 81 additions and 23 deletions

View File

@ -3,5 +3,8 @@
Repo following tutorial @ Repo following tutorial @
https://docs.djangoproject.com/en/3.2/intro/ https://docs.djangoproject.com/en/3.2/intro/
Login Page example @ ✅ Login Page tutorial @
https://learndjango.com/tutorials/django-login-and-logout-tutorial https://learndjango.com/tutorials/django-login-and-logout-tutorial
✅ Remember me @
https://codepen.io/AllThingsSmitty/pen/pOoeyz

View File

@ -127,4 +127,5 @@ STATIC_URL = '/static/'
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
LOGIN_REDIRECT_URL = '/' LOGIN_REDIRECT_URL = 'index'
LOGOUT_REDIRECT_URL = 'index'

View File

@ -19,10 +19,10 @@
.login-form { .login-form {
display: flex; display: flex;
min-height: 15vh;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
margin: 2em;
} }
.login-input { .login-input {
@ -30,6 +30,11 @@
margin: 0.1em; margin: 0.1em;
} }
.login-error {
color: red;
padding-bottom: 1em;
}
.spaced { .spaced {
width: 100%; width: 100%;
display: flex; display: flex;

View File

@ -0,0 +1,19 @@
document.addEventListener('DOMContentLoaded', (event) => {
clock();
})
function clock() {
const today = new Date();
let h = today.getHours();
let m = today.getMinutes();
let s = today.getSeconds();
m = checkTime(m);
s = checkTime(s);
document.getElementById('clock').innerHTML = h + ":" + m + ":" + s;
setTimeout(clock, 1000);
}
function checkTime(i) {
if (i < 10) {i = "0" + i}; // add zero in front of numbers < 10
return i;
}

View File

@ -0,0 +1,24 @@
document.addEventListener('DOMContentLoaded', (event) => {
const rmCheck = document.getElementById("remember_me"),
emailInput = document.getElementById("id_username");
if (localStorage.checkbox && localStorage.checkbox !== "") {
rmCheck.setAttribute("checked", "checked");
emailInput.value = localStorage.username;
} else {
rmCheck.removeAttribute("checked");
emailInput.value = "";
}
})
function lsRememberMe() {
if (rmCheck.checked && emailInput.value !== "") {
localStorage.username = emailInput.value;
localStorage.checkbox = rmCheck.value;
} else {
localStorage.username = "";
localStorage.checkbox = "";
}
}

View File

@ -8,6 +8,7 @@
<link rel="shortcut icon" href="{% static 'img/logo.ico' %}"/> <link rel="shortcut icon" href="{% static 'img/logo.ico' %}"/>
<meta name-="viewport" content="width=device-width, initial-scale=1"> <meta name-="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}">
<script type="text/javascript" src="{% static 'js/base.js' %}"></script>
{% block extrahead %}{% endblock %} {% block extrahead %}{% endblock %}
</head> </head>
@ -21,20 +22,21 @@
</div> </div>
<!-- center --> <!-- center -->
<div class="header-center"> <div class="header-center">
{% if user.is_authenticated %} <div id="clock"></div>
{{ user.username }}
{% else %}
<p>You are not logged in</p>
<a href="{% url 'login' %}">Log In</a>
{% endif %}
</div> </div>
<!-- right --> <!-- right -->
<div class="header-right"> <div class="header-right">
{% if user.is_authenticated %}
<span class="header-text">
{{ user.username }}
(<a href="{% url 'logout' %}">logout</a>)
</span>
{% else %}
<span class="header-text">Sign in:</span> <span class="header-text">Sign in:</span>
<a href="/auth/login/" class="header-link">PyHub</a> <a href="/auth/login/" class="header-link">PyHub</a>
<a href="#" class="header-link">Github</a> <a href="#" class="header-link">Github</a>
<a href="#" class="header-link">Twitter</a> <a href="#" class="header-link">Twitter</a>
{% endif %}
</div> </div>
</header> </header>

View File

@ -5,6 +5,7 @@
{% block extrahead %} {% block extrahead %}
<link rel="stylesheet" href="{% static 'css/login.css' %}"> <link rel="stylesheet" href="{% static 'css/login.css' %}">
<script type="text/javascript" src="{% static 'js/login.js' %}"></script>
{% endblock %} {% endblock %}
{% block content %} {% block content %}
@ -14,20 +15,23 @@
<h1 class="brand">&lt;PyHub Login&gt;</h1> <h1 class="brand">&lt;PyHub Login&gt;</h1>
<form class="login-form" method="post" action=""> <form class="login-form" method="post" action="">
{% csrf_token %} {% csrf_token %}
{{ form.as_p }} {% if form.errors %}
<!-- <div class="login-error">Username or Password not correct!</div>
<span><input class="login-input" type="text" name="login" value="" placeholder="Username or Email"></span> {% endif %}
<span><input class="login-input" type="password" name="password" value="" placeholder="Password"></span> <p>Username: {{ form.username }}</p>
--> <p>Password: {{ form.password }}</p>
<div class="spaced"> <div class="spaced">
<span class="remember_me"> <span class="remember_me">
<label><input type="checkbox" name="remember_me" id="remember_me">Remember me</label> <input type="checkbox" name="remember_me" id="remember_me"><label for="remember_me">Remember me</label>
</span> </span>
<span class="submit"><input type="submit" name="commit" value="Login"></span> <span class="submit"><input type="submit" name="commit" value="Login" onclick="lsRememberMe()"></span>
</div> </div>
</form> </form>
<p>Forgot your password? <a href="#">Click here to reset</a>.</p> <p>Forgot your password? <a href="#">Click here</a>.</p>
</div> </div>
</section> </section>
{% endblock %} {% endblock %}