-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathexample.html
File metadata and controls
39 lines (39 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>example</title>
<link href="example.css" id="stylesheet" rel="stylesheet" type="text/css" />
</head>
<body>
<form class="text-center">
<img src="./bootstrap-solid.svg" alt="iconimage" width="72" height="72" />
<h1 id="heading">Please sign in</h1>
<input
type="email"
id="inputEmail"
class="form-control"
placeholder="Email address"
required
autofocus
/>
<input
type="password"
id="inputPassword"
class="form-control"
placeholder="Password"
required
autofocus
/>
<div id="divCheck">
<label id="inputCheck">
<input type="checkbox" value="remember-me" />
Remember me
</label>
</div>
<button id="buttonSubmit" type="submit">Sign in</button>
<p class="copyrights">© 2017-2022</p>
</form>
</body>
</html>