mirror of
https://github.com/FAUSheppy/oh-my-nemesis
synced 2025-12-13 01:58:32 +01:00
Initial (reset)
This commit is contained in:
56
templates/standard/login.html
Normal file
56
templates/standard/login.html
Normal file
@@ -0,0 +1,56 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="Leauge of Legends Coaching">
|
||||
<link rel=stylesheet href="/static/login.css">
|
||||
<title>Nemesis Coaching</title>
|
||||
{% include 'partials/header.html' %}
|
||||
|
||||
</head>
|
||||
|
||||
<body style="background-image: url(https://blog.atlantishq.de/lolproplay_by_Clement_Grandjean_CCSA_licensed.jpg);">
|
||||
{% include 'partials/navbar.html' %}
|
||||
<div class="container">
|
||||
<div class="d-flex justify-content-center h-100">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3>Sign In</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form method="post">
|
||||
<div class="input-group form-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text"><i class="fas fa-user"></i></span>
|
||||
</div>
|
||||
<input type="text" class="form-control" name="username" placeholder="username">
|
||||
|
||||
</div>
|
||||
<div class="input-group form-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text"><i class="fas fa-key"></i></span>
|
||||
</div>
|
||||
<input type="password" class="form-control" name="password" placeholder="password">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" value="Login" class="btn float-right login_btn">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<div class="d-flex justify-content-center links mb-2">
|
||||
{{ config["login-help"] }}
|
||||
</div>
|
||||
<div class="d-flex justify-content-center links">
|
||||
<a class="btn btn-block btn-primary text-uppercase" href="/contact">{{ config["login-help-action"] }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% include "partials/footer.html" %}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user