forked from swaaz/basicprograms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 945 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (29 loc) · 945 Bytes
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
<!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>Get Data</title>
</head>
<body>
<form id="form">
<div class="input-group">
<label for="user_name">Name</label>
<input type="text" name="user_name" id="user_name">
</div>
<div class="input-group">
<label for="user_email">Email</label>
<input type="email" name="user_email" id="user_email">
</div>
<div class="input-group">
<label for="user_password">Password</label>
<input type="password" name="user_password" id="user_password">
<button type="button" id="toggle_password">toggle password</button>
</div>
<button type="submit">Save</button>
</form>
<!-- link to javascript file -->
<script src="./index.js"></script>
</body>
</html>