-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
31 lines (30 loc) · 1.38 KB
/
signup.php
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
<div class="container" style="max-width: 600px;">
<div class="main">
<div class="grid">
<div>
<button class="delete-button" onclick="document.getElementById('modal-signup').style.display='none'" style="position:relative;float:right;margin-top: 20px;margin-right:20px;"></button>
</div>
<div class="sign-up-form" style="border:0px;">
<div class="form-row">
<label>Username</label><br>
<input type="text" spellcheck="false" id="signup_username" placeholder="enter your email address ..">
</div>
<div class="form-row">
<label>Password</label><br>
<input type="password" spellcheck="false" id="signup_password" placeholder="enter your password ..">
</div>
<div class="form-row">
<label>Confirm Password</label><br>
<input type="password" spellcheck="false" id="signup_confirm_password" placeholder="re-enter your password ..">
</div>
<div id="signup_message" style="padding:0 1rem;color:e94c4c;"></div>
<div class="form-row">
<button onclick="signup()">Sign up</button>
</div>
</div>
</div>
<div style="display:flex;justify-content:center;color:#efefef;">
<p>Already have an account? Log in <a href="#" onclick="showLoginModal()">here</a>.</p>
</div>
</div>
</div>