-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignUp.html
31 lines (30 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up page</title>
<link rel="stylesheet" href="./signUp.css">
<link rel = "icon" href = "https://qph.cf2.quoracdn.net/main-qimg-4d340b8b704ccfc33ac16dd261b6c121-lq" type = "image/x-icon">
</head>
<body>
<div id="container">
<div>
<img src="https://th.bing.com/th/id/R.870b2e354b200b7f572132ffcdafb475?rik=ltt%2fuBkshly3jQ&riu=http%3a%2f%2f4.bp.blogspot.com%2f-_hPtN6OSUlI%2fUofVgda6szI%2fAAAAAAAAGSM%2fhx7TmrmEc98%2fs1600%2f1-01.jpg&ehk=3gVplgejqRblebejYhW4B1PXn6E63wth5zHAet8G0Z4%3d&risl=&pid=ImgRaw&r=0" alt="">
</div>
<h2>Sign up</h2><br>
<div id="form">
<label for="">Name</label><br>
<input type="text" placeholder="What would you like to be called?">
<br><br>
<label for="">Email</label><br>
<input type="email" placeholder="Your email">
</div>
<br><br><br>
<hr>
<button onclick="signUp()" >Next</button>
</div>
</body>
<script src="./bundles.js"></script>
</html>