31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="/static/bootstrap.css">
|
|
<link rel="stylesheet" href="/static/custom.css">
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
|
|
<title>Login - Estus Shots</title>
|
|
</head>
|
|
<body>
|
|
<div class="container vertical-center">
|
|
<div class="card text-center mx-auto" style="width: 15rem">
|
|
<div class="card-header">Login</div>
|
|
<div class="card-body">
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" class="form-control">
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Enter</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |