-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (50 loc) · 1.93 KB
/
Copy pathindex.html
File metadata and controls
61 lines (50 loc) · 1.93 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Korabook</title>
<meta name="CV" content="resume">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="CSS/main.css">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-grid.min.css" />
<link rel="stylesheet" href="css/bootstrap-reboot.min.css" />
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div>
<a href="index.html"><img src="images/Logo%20Png.png"> </a>
</div>
</nav>
<div class="login-form">
<form>
<h2 class="text-center">Log in</h2>
<br>
<br>
<div class="form-group">
<input type="text" class="form-controll" placeholder="Username" required="required" id="username">
</div>
<div class="form-group">
<input type="password" class="form-controll" placeholder="Password" required="required" id="password">
</div>
<p id="wrong" class="dat">
*Wrong user data, Please Try Again
</p>
<br>
<div class="form-group">
<button type="button" class="btn btn-primary btn-block" onclick="login()">Log in</button>
</div>
<div class="form-group">
<button class="btn btn-danger btn-block"><a href="pages/Registeration/index.html">Register</a></button>
</div>
<div class="clearfix">
<label class="pull-left checkbox-inline"><input type="checkbox"> Remember me</label>
<a href="#" class="pull-right">Forgot Password?</a>
</div>
</form>
</div>
<script src="JS/main.js"></script>
</body>
</html>