aboutsummaryrefslogtreecommitdiff
path: root/labbot/addons/dashboard/templates/login.html
diff options
context:
space:
mode:
Diffstat (limited to 'labbot/addons/dashboard/templates/login.html')
-rw-r--r--labbot/addons/dashboard/templates/login.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/labbot/addons/dashboard/templates/login.html b/labbot/addons/dashboard/templates/login.html
new file mode 100644
index 0000000..82995c4
--- /dev/null
+++ b/labbot/addons/dashboard/templates/login.html
@@ -0,0 +1,78 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="description" content="">
+ <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
+ <meta name="generator" content="Hugo 0.101.0">
+ <title>Signin Template ยท Bootstrap v5.2</title>
+
+ <link rel="canonical" href="https://getbootstrap.com/docs/5.2/examples/sign-in/">
+
+
+
+
+
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
+
+ <style>
+ html, body {
+ height: 100%;
+ }
+
+ body {
+ display: flex;
+ align-items: center;
+ padding-top: 40px;
+ padding-bottom: 40px;
+ background-color: #f5f5f5;
+ }
+
+ .form-signin {
+ max-width: 330px;
+ padding: 15px;
+ }
+
+ .form-signin .form-floating:focus-within {
+ z-index: 2;
+ }
+
+ .form-signin input[type="email"] {
+ margin-bottom: -1px;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .form-signin input[type="password"] {
+ margin-bottom: 10px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ </style>
+ </head>
+ <body class="text-center">
+
+<main class="form-signin w-100 m-auto">
+ <form method="POST">
+ <h1 class="h3 mb-3 fw-normal">Login - {{ bot.name }}</h1>
+
+ <div class="form-floating">
+ <input type="input" class="form-control" id="username" name="username">
+ <label for="username">username</label>
+ </div>
+ <div class="form-floating">
+ <input type="password" class="form-control" id="password" name="password">
+ <label for="password">password</label>
+ </div>
+
+ <button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
+ </form>
+</main>
+
+
+
+ </body>
+</html>