-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 1.55 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multi Step Form Wizard</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="wrapper">
<form id="multiStepForm" novalidate>
<!-- Progress Bar -->
<div class="progress-container">
<div class="progress-line" id="progressLine"></div>
</div>
<!-- Step 1 -->
<div class="form-step active">
<h2>Personal Information</h2>
<input type="text" placeholder="Full Name" required>
<input type="email" placeholder="Email Address" required>
<button type="button" class="btn next-btn">Next</button>
</div>
<!-- Step 2 -->
<div class="form-step">
<h2>Contact Details</h2>
<input type="tel" placeholder="Phone Number" required>
<input type="text" placeholder="City" required>
<div class="btn-group">
<button type="button" class="btn back-btn">Back</button>
<button type="button" class="btn next-btn">Next</button>
</div>
</div>
<!-- Step 3 -->
<div class="form-step">
<h2>Account Setup</h2>
<input type="password" placeholder="Password" required>
<input type="password" placeholder="Confirm Password" required>
<div class="btn-group">
<button type="button" class="btn back-btn">Back</button>
<button type="submit" class="btn submit-btn">Submit</button>
</div>
</div>
</form>
</div>
<script src="./assets/js/app.js"></script>
</body>
</html>