-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 952 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 952 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
<!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">
<link rel='stylesheet' type='text/css' href='index.css'>
<title>Document</title>
</head>
<body>
<form>
<h1>Login Form</h1>
<div class='email-div'>
<label for="#email">Email</label>
<input type='text' id="email">
</div>
<div class='pass-div'>
<label for="#password">Password</label>
<input type='password' id="password">
</div>
<button type='submit'>Submit</button>
</form>
<script type='text/javascript' src='index.js'></script>
<script type='text/javascript' src='Examples/callback.js'></script>
<script type='text/javascript' src='Examples/Hell.js'></script>
<script type='text/javascript' src='Examples/promise.js'></script>
</body>
</html>