-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
28 lines (25 loc) · 909 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test Page</title>
<style>
form { margin: 10px 0; }
</style>
</head>
<body>
<form>
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<input type="password" name="compare_password" placeholder="Confirm Password" compareTo="password" required>
<input type="submit" class="submit">
</form>
<form>
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<input type="password" name="compare_password" placeholder="Confirm Password" data-compareTo="password" required>
<input type="submit" class="submit">
</form>
<script src="compareTo.min.js"></script>
</body>
</html>