-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.html
53 lines (45 loc) · 1.92 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
51
52
<!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>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./sharadstyles/style.css">
</head>
<body>
<div class="wrapper">
<div class="headline">
<h1>Sign up</h1>
<div class="para">Learn on your own time from top universities and businesses.</div>
</div>
<form class="form" name="myForm">
<div class="signup">
<div class="form-group">
<h5>FULL NAME</h5>
<input placeholder="Enter your full name" type="text" class="name">
</div>
<div class="form-group">
<h5>EMAIL</h5>
<input placeholder="name@email.com" type="email" class="email">
</div>
<div class="form-group">
<h5>PASSWORD</h5>
<input placeholder="Create password" type="password" class="password">
<h5>Between 8 and 72 characters</h5>
</div>
<button type="submit" class="btn">join for free</button>
<p class="devidebutton">or</p>
<button type="submit" class="googlelogin"><a href="#" class="fa fa-google"></a>Continue with Google</button>
<br>
<button type="submit" class="fblogin"><a href="#" class="fa fa-facebook"></a>Continue with Facebook</button>
<div class="account-exist">
Already on Coursera? <a href="signin.html" id="login">Log in</a>
</div>
</div>
</form>
</div>
<script src="./sharadJSFile/signUp.js"></script>
</body>
</html>