1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2018-05-15 12:33:24 +02:00
parent 4336e5bc14
commit 279b325876
2 changed files with 19 additions and 9 deletions

View file

@ -1,13 +1,23 @@
@ryg-dark-blue: #0d193b;
@ryg-light-blue: #a0ccff;
@background-color: #0d193b;
@text-color: #a0ccff;
@accent-color: white;
body {
font-family: sans-serif;
color: @ryg-light-blue;
background-color: @ryg-dark-blue;
color: @text-color;
background-color: @background-color;
}
h1, h2, h3, h4, h5, h6 {
color: white;
color: @accent-color;
}
input {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
color: @text-color;
border: none;
border-bottom: 1px dashed @text-color;
padding: 2px;
font-size: medium;
font-family: sans-serif;
}

View file

@ -9,13 +9,13 @@
Login
</h1>
<form action="{{ url_for('page_loggedin') }}" method="POST">
<label>
<label id="label-username">
Username
<input name="username" type="text">
<input id="input-username" name="username" type="text">
</label>
<label>
<label id="label-password">
Password
<input name="password" type="password">
<input id="input-password" name="password" type="password">
</label>
<input type="submit" value="Login">
</form>