-
Notifications
You must be signed in to change notification settings - Fork 49
/
form.html
71 lines (66 loc) · 3.27 KB
/
form.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="css/styles.css">
<title>Registration Form</title>
</head>
<body>
<div class="container" id="container">
<div class="form-container sign-up-container">
<form action="#">
<h1>FILL THE DETAILS</h1>
<div class="social-container">
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a>
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a>
</div>
<span>or use your email for registration</span>
<input type="text" placeholder="First name" />
<input type="text" placeholder="Last name" />
<input type="number" placeholder="Contact no." />
<input type="text" placeholder="ID proof type" />
<input type="number" placeholder="ID Proof No." />
<input type="text" placeholder="Address" />
<input type="text" placeholder="Startup idea" />
<input type="text" placeholder="Skillset required" />
<input type="text" placeholder="Investment amount(in INR)" />
<input type="checkbox" required> I am eligible according to above mentioned criteria.
<button>SUBMIT</button>
</form>
</div>
<div class="form-container sign-in-container">
<form action="#">
<h1>Sign up</h1>
<div class="social-container">
<a href="#" class="social"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="social"><i class="fab fa-google-plus-g"></i></a>
<a href="#" class="social"><i class="fab fa-linkedin-in"></i></a>
</div>
<span>or use your account</span>
<input type="email" placeholder="Email" />
<input type="password" placeholder="Password" />
<input type="password" placeholder="Confirm Password" />
<button>Sign Up</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>STEP-2</h1>
<p>Enter your personal &professional details and complete profile now!</p>
<button class="ghost" id="signIn">PREVIOUS</button>
</div>
<div class="overlay-panel overlay-right">
<h1>CREATE ACCOUNT</h1>
<p>Signup to connect with us!</p>
<button class="ghost" id="signUp">NEXT</button>
</div>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>