-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.php
34 lines (24 loc) · 861 Bytes
/
sign-up.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
32
33
34
<section class='sign-up-form'>
<h2>Sign up</h2>
<form action='sign-up-process.php' method='post'>
<label for="name" value="Firstname">Firstname</label>
<input type="text" name="firstname" required>
<br><br>
<label for="email" value="email">Email</label>
<input type="text" name="email" required>
<br><br>
<!-- CHANGE type to password later -->
<label for="password" value="password">Password</label>
<input type="text" name="pwd" required>
<br><br>
<label for="confirm password" value="Confirm Password">Confirm Password</label>
<input type="text" name="conpwd" required>
<br><br>
<input type="submit" name="submit" value="Submit">
<p>Already have an account? <a class='login-from-sign'>Login!</a><p>
<br><br>
</form>
</section>
<script type="text/javascript">
//AJAX TEST
</script>