-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.44 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: default
title: Auth Login
---
<script defer src="/auth/js/login.js"></script>
<div class="container" style="display: block; margin: 0 auto; width: 60%; padding: 20px;">
<h2 class="text-center">Login</h2>
<p>Sign In to BotanyBase, if you have a Massroom account, this is the same login.</p>
<a class="nb-button green rounded" href="/">Back</a>
<br>
<form action="/auth/dashboard" class="loginForm">
<div class="input-group">
<div class="input__container">
<div class="shadow__input"></div>
<button class="input__button__shadow">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#000000" width="20px" height="20px">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"></path>
</svg>
</button>
<input type="text" id="username" class="input__search" placeholder="Input Username">
<span class="error-message"></span>
</div>
</div>
<br>
<br>
<div class="input-group">
<div class="input__container">
<div class="shadow__input"></div>
<input type="password" id="password" class="input__search" placeholder="Input Password">
<span class="error-message"></span>
</div>
</div>
<br>
<br>
<button class="nb-button green" type="submit">Login</button>
</form>
</div>