-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign copy
20 lines (18 loc) · 1.07 KB
/
sign copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="box" id="login-div">
<h2 class="font-clr"> LOGIN</h2>
<input type="email" id="login-email" class="text-field" name="login-email" placeholder="Email" required><br>
<input type="password" id="login-password" class="text-field" name="login-password" placeholder="Password" required><br>
<button id="login-btn" class="btn-style">Login</button><br>
<button id="reg-btn" class="an-btn">don't have an account? Register</button><br>
</div>
<div class="box" id="register-div">
<h2 class="font-clr">Register</h2>
<input type="email" id="register-email"class="text-field" name="register-email" placeholder="Email" required><br>
<input type="password" id="register-password" class="text-field"name="register-password" placeholder="Password" required><br>
<button id="register-btn" class="btn-style">REGISTER</button><br>
<button id="log-btn" class="an-btn">have an account? Login</button><br>
</div>
<div id="result-box">
<h3 id="result"></h3>
<button id="log-out-btn" class="btn-style"> LOGIN OUT</button><br>
</div>