-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSignUp.html
50 lines (47 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
<!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 in or Sign up | Milaap, India's largest crowdfunding website | Milaap
</title>
<link rel="stylesheet" href="css/SignUp.css" />
</head>
<body>
<div id="signup">
<div id="first_div">
<div id="logo">
<img src="data/img/logo.png" alt="logo" />
</div>
<p>Welcome to Milaap,</p>
<p>India’s largest crowdfunding site</p>
</div>
<!-- <div id="line"></div> -->
<div id="second_div">
<div>
<a href="index.html">
<img src="data/img/close.png" alt="close" />
</a>
</div>
<div>
<p>Sign up & manage fundraisers, donations & more</p>
</div>
<div id="form_div">
<form>
<input id="fullname" type="text" placeholder="Full name" />
<input id="email" type="email" placeholder="Email" />
<input id="password" type="password" placeholder="Password" />
<button type="submit">Sign up</button>
</form>
</div>
<div>
<p>Already signed up with Milaap?</p>
<button><a href="Signin.html">Login</a></button>
</div>
</div>
</div>
</body>
<script src="js/SignUp.js"></script>
</html>