create sample login page

This commit is contained in:
Lukas 2021-09-04 16:55:07 +02:00
parent 192e4aa097
commit dc70ea1cfd
6 changed files with 188 additions and 4 deletions

View File

@ -12,6 +12,14 @@ body {
display: none;
}
a {
color: lightcoral;
}
p {
margin: 0;
}
.landing-bg {
background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed;
background-size: cover;
@ -19,6 +27,7 @@ body {
.landing-main-text {
text-align: center;
margin: 1em;
}
.landing-section {
@ -86,8 +95,6 @@ footer p {
margin: 0;
color: #c55e00;
font-size: 3em;
text-decoration: underline 0.1em #c55e00;
text-underline-offset: 0.1em;
}
.brand-text {

View File

@ -0,0 +1,128 @@
body {
font-family: monospace;
margin: 0;
overflow-x: hidden;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
::-webkit-scrollbar {
display: none;
}
a {
color: lightcoral;
}
p {
margin: 0;
}
.login-bg {
background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed;
background-size: cover;
}
.shade {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.5);
}
.login-section {
min-height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.login-section-content {
width: 33vw;
height: 33vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #ccc;
}
.login-form {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 2em;
}
.login-input {
width: 20em;
margin: 0.1em;
}
.spaced {
width: 100%;
display: flex;
justify-content: space-between;
margin: 0.5em 0.5em 0 0;
}
footer {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 0.75rem;
position: absolute;
bottom: 0;
}
footer p {
margin: 0.5em;
}
.brand {
font-size: 2.5em;
margin: 0;
color: #c55e00;
}
.header {
width: 100vw;
display: flex;
flex-direction: row;
position: absolute;
}
.header-link {
color: white;
margin: 1rem;
font-size: 1rem;
text-decoration: underline 0.1em #c55e00;
text-underline-offset: 0.1em;
transition: text-decoration-color 300ms, text-underline-offset 300ms;
}
.header-link:hover {
text-decoration-color: red;
text-underline-offset: 0.2em;
}
.header-text {
margin: 1rem 1rem 1rem auto;
font-size: 1rem;
color: #ccc;
}
#logo {
width: 50px;
height: 50px;
}

View File

@ -4,7 +4,7 @@
<head>
<!-- Source for this example: https://dev.to/hmlon/creating-a-landing-page-in-django-20pg -->
<title>Lyux - Landing</title>
<title>PyHub - Landing</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/landing.css' %}">
<link rel="shortcut icon" href="{% static 'img/logo.ico' %}"/>
<meta name-="viewport" content="width=device-width, initial-scale=1">
@ -17,6 +17,7 @@
<a href="/"><img id="logo" src="{% static 'img/logo.png' %}" alt="Logo"></a>
</div>
<div class="header-text">Sign in:</div>
<a href="/login" class="header-link">PyHub</a>
<a href="#" class="header-link">Github</a>
<a href="#" class="header-link">Twitter</a>
</header>
@ -24,7 +25,7 @@
<section class="landing-section landing-bg">
<div class="landing-section-content">
<div class="landing-section-content-inner shade">
<h1 class="brand">PyHub</h1>
<h1 class="brand">&lt;PyHub&gt;</h1>
<!--
<h2>
<span class="brand-text">Land</span>ing

View File

@ -0,0 +1,44 @@
{% load static %}
<!DOCTYPE html>
<html>
<head>
<title>PyHub - Login</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/login.css' %}">
<link rel="shortcut icon" href="{% static 'img/logo.ico' %}"/>
<meta name-="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="header shade">
<div>
<a href="/"><img id="logo" src="{% static 'img/logo.png' %}" alt="Logo"></a>
</div>
<div class="header-text"></div>
</header>
<section class="login-section login-bg">
<div class="login-section-content shade">
<h1 class="brand">&lt;PyHub Login&gt;</h1>
<form class="login-form" method="post" action="">
<span><input class="login-input" type="text" name="login" value="" placeholder="Username or Email"></span>
<span><input class="login-input" type="password" name="password" value="" placeholder="Password"></span>
<div class="spaced">
<span class="remember_me">
<label><input type="checkbox" name="remember_me" id="remember_me">Remember me</label>
</span>
<span class="submit"><input type="submit" name="commit" value="Login"></span>
</div>
</form>
<p>Forgot your password? <a href="#">Click here to reset</a>.</p>
</div>
</section>
<footer>
<div>
<p>made using Django ❤️</p>
</div>
</footer>
</body>
</html>

View File

@ -3,4 +3,5 @@ from . import views
urlpatterns = [
path('', views.index, name='index'),
path('login/', views.login, name='login'),
]

View File

@ -2,3 +2,6 @@ from django.shortcuts import render
def index(request):
return render(request, 'pages/index.html')
def login(request):
return render(request, 'pages/login.html')