-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiStepForm.html
46 lines (41 loc) · 1.61 KB
/
MultiStepForm.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
<html>
<head>
<title>
MultiStepForm
</title>
<link rel="stylesheet" href="multi.css">
</head>
<body>
<div class="container">
<form id="form1">
<h3>CREATE ACCOUNT HERE</h3>
<input type="text" placeholder="USERNAME" id="username">
<input type="password" placeholder="PASSWORD" id="pass">
<input type="password" placeholder="CONFIRM PASSWORD" id="cpass">
<div class="btn">
<button type="button" id="next-2">NEXT-2</button>
</div>
</form>
<form id="form2">
<h3>LINKS</h3>
<input type="text" placeholder="LINKEDIN" id="link">
<input type="text" placeholder="GITHUB" id="git">
<input type="text" placeholder="LEETCODE" id="leet">
<div class="btn">
<button type="button" id="back-1">Back-1</button>
<button type="button" id="next-3">NEXT-3</button>
</div>
</form>
<form id="form3">
<h3>LAST STEP</h3>
<input type="text" placeholder="GMAIL" id="mail">
<input type="text" placeholder="CLG ID" id="id">
<div class="btn">
<button type="button" id="back-2">BACK-2</button>
<button type="button" id="sbt">SUBMIT</button>
</div>
</form>
</body>
<script type="text/javascript" src="multi.js">
</script>
</html>