-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
46 lines (33 loc) · 996 Bytes
/
login.php
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Login Form</title>
<link rel="stylesheet" href="logstyle.css">
</head>
<body>
<body>
<form action="logcheck.php" method="POST">
<div class="login">
<div class="login-screen">
<div class="app-title">
<h1>Login</h1>
</div>
<div class="login-form">
<div class="control-group">
<input type="text" class="login-field" name="name" value="" placeholder="username" id="login-name">
<label class="login-field-icon fui-user" for="login-name"></label>
</div>
<div class="control-group">
<input type="password" class="login-field" name="password" value="" placeholder="password" id="login-pass">
<label class="login-field-icon fui-lock" for="login-pass"></label>
</div>
<input type="submit" name="submit" value="Log in" >
<a class="login-link" href="Register.php">Not Registered yet?</a>
</div>
</div>
</div>
</form>
</body>
</body>
</html>