-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
30 lines (30 loc) · 1 KB
/
signup.html
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
<!DOCTYPE html>
<html>
<title>
Sign Up</title>
<link rel="stylesheet" type="text/css" href="signup.css">
<div class="content">
<form class="signupform" action="" method="post">
<label for="email">Account E-mail: </label>
<input type="text" id="email" name="emaill"></input>
<br>
<br>
<label for="pword">Account Password: </label>
<input type="text" id="pword" name="pwordd"></input>
<br>
<br>
<label for="cpword">Confirm Password: </label>
<input type="text" id="cpword" name="cpwordd"></input>
<br>
<br>
<label for="usrnm">Account Username: </label>
<input type="text" id="usrnm" name="usrnmm"></input>
<br>
<br>
<div class="pfptxt">Profile Picture</div>
<input class="pfpupld" type="file" id="myFile" name="filename">
<br>
<br>
<button class="createacc" type="submit">Create Account</button>
</form>
</div>