forked from lisazhao30/TechNova
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
41 lines (39 loc) · 1.43 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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cura - sign up</title>
<link rel="stylesheet" href="./sophiestyle.css" />
<link rel="icon" href="./pictures/Untitled_Artwork.png" type="png" />
</head>
<body>
<img src="./pictures/Vector.svg" alt="" class="blob" id="pinkblob" />
<img src="./pictures/vector1.svg" alt="" class="blob" id="yellowblob" />
<div class="blue-box">
<form action="" method="post">
<h1>sign up</h1>
<br />
<input type="text" id="name" required placeholder=" name" />
<br />
<div id="pronoun-box">
<label for="pronouns"> pronouns:</label>
<select name="pronouns" id="pronouns">
<option value="she/her">she/her</option>
<option value="he/him">he/him</option>
<option value="they/them">they/them</option>
</select>
</div>
<br />
<input type="email" id="email" required placeholder=" email" />
<br />
<input type="text" id="username" required placeholder=" username" />
<br />
<input type="password" id="password" required placeholder=" password" />
<br />
<input type="submit" value=" sign me up! " id="submit" />
</form>
</div>
<a href="./index.html"><button class="back">back</button></a>
</body>
</html>