-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (65 loc) · 2.41 KB
/
index.html
File metadata and controls
70 lines (65 loc) · 2.41 KB
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
<!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>Multi-step Form</title>
<link rel="stylesheet" href="style.css">
<script src="index.js" defer></script>
</head>
<body>
<form data-multi-step>
<div class="card " data-step>
<h1 class="title">Sign up</h1>
<div class="group">
<label for="email">Email</label>
<input type="email" required name="email" id="eamil">
</div>
<div class="group">
<label for="password">Password</label>
<input type="password" name="password" id="password">
</div>
<div class="group">
<label for="password">Confirm Password</label>
<input type="password" name="password" id="confirmpassword">
</div>
<button type="button" data-next>Next</button>
</div>
<div class="card" data-step>
<h1 class="title">Personal Info</h1>
<div class="group">
<label for="name">First Name</label>
<input type="text" name="name" id="name">
</div>
<div class="group">
<label for="name">Second Name</label>
<input type="text" name="name" id="secondname">
</div>
<div class="group">
<label for="cnic">CNIC</label>
<input type="number" name="cnic" id="cnic">
</div>
<button type="button" data-previous="">Previous</button>
<button type="button" data-next="">Next</button>
</div>
<div class="card" data-step>
<h1 class="title">Professional Info</h1>
<div class="group">
<label for="name">Company Name</label>
<input type="text" name="name" id="companyname">
</div>
<div class="group">
<label for="name">Team Name</label>
<input type="text" name="name" id="teamname">
</div>
<div class="group">
<label for="account">Account No</label>
<input type="number" name="account" id="account">
</div>
<button type="button" data-previous>Previous</button>
<button type="submit">Submit</button>
</div>
</form>
</body>
</html>