-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewacc.html
More file actions
49 lines (47 loc) · 1.72 KB
/
newacc.html
File metadata and controls
49 lines (47 loc) · 1.72 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
40
41
42
43
44
45
46
47
48
49
---
layout: default
title: Auth Sign Up
---
<script defer src="/auth/js/signup.js"></script>
<div class="container" style="display: block; margin: 0 auto; width: 60%; padding: 20px;">
<h2 class="text-center">Sign-Up</h2>
<p>Sign Up for a BotanyBase account! Minimum 8 characters for a password.</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="email" id="email" class="input__search" placeholder="Input Email">
<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">Sign Up!</button>
</form>
</div>