diff options
Diffstat (limited to 'views/login.handlebars')
-rw-r--r-- | views/login.handlebars | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/views/login.handlebars b/views/login.handlebars new file mode 100644 index 0000000..47e2166 --- /dev/null +++ b/views/login.handlebars @@ -0,0 +1,14 @@ +<div class="container"> + <h1 class="mt-2">{{ title }}</h1> + <form action="/login" method="post" accept-charset="utf-8"> + <div class="mb-3"> + <label for="email" class="form-label">Email:</label> + <input name="email" type="email" class="form-control" id="email" required> + </div> + <div class="mb-3"> + <label for="password" class="form-label">Password:</label> + <input name="password" class="form-control" id="password" required></input> + </div> + <button type="submit" class="btn">Login</button> + </form> +</div> |