-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs.html
More file actions
27 lines (27 loc) · 1.03 KB
/
Copy pathjs.html
File metadata and controls
27 lines (27 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="jquery-3.6.1.min.js"></script>
</head>
<body>
<div class="wrapper">
<form class="form-signin">
<h2 class="form-signin-heading">Login</h2>
<input type="text" class="form-control" name="name" placeholder="Email Address" required="" autofocus="" />
<input type="password" class="form-control" name="password" placeholder="Password" required=""/>
<label class="checkbox">
<input type="checkbox" value="remember-me" id="rememberMe"> Remember me
</label>
<button class="btn btn-lg btn-primary btn-block mb-3" type="submit">Login</button>
<div class="text-center">
<a href="index.html" class="text-danger">HTML Version</a>
</div>
</form>
</div>
</body>
</html>