-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 2.62 KB
/
index.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
<!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="script.js" defer></script>
</head>
<body>
<form data-multi-step class="multi-step-form">
<h1>Online Application</h1>
<section class= "card" data-step ="1">
<p class="step-title ">Personal Information</p>
<div class="form-group">
<label for="firstname">Firstname</label>
<input type="firstname" name="firstname"id="firstname">
</div>
<div class="form-group">
<label for="lastname">Lastname</label>
<input type="lastname" name="lastname" id="lastname">
</div>
<button type="button" data-next>Next</button>
</section>
<section class= "card" data-step="2">
<h3 class="step-title ">Personal Information</h3>
<div class="form-group">
<label for="address">Address</label>
<input type="text" name="address" id="address">
</div>
<div class="form-group">
<label for="city">City</label>
<input type="text" name="city" id="city">
</div>
<div class="form-group">
<label for="zipcode">Zipe code</label>
<input type="text" name="zipcode" id="zipecode">
</div>
<div class="form-group">
<label for="Country">Country</label>
<input type="text" name="country" id="country">
</div>
<button type="button" data-previous>Previous</button>
<button type="button" data-next>Next</button>
</section>
<section class= "card" data-step="3">
<h3 class="step-title ">Personal Information</h3>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="Password">Password</label>
<input type="password" name="password" id="password">
</div>
<button type="button" data-previous>Previous</button>
<button type="submit">Submit</button>
</class=>
</section>
</form>
</body>
</html>