-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
59 lines (49 loc) · 1.89 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
include "handlers/connect.php";
include "handlers/game_data.php";
include "handlers/date_approx.php";
?>
<!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">
<title>Gamology</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="post-styles.css" />
<link rel="stylesheet" type="text/css" href="login-signup-styles.css" />
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
<?php
include "handlers/header.php";
?>
<div class="section">
<?php
include "handlers/breadcrumb.php";
?>
<div class="post-container">
<form action="stop" method="post" class="login-signup-container">
<i class="icon">Gamology</i>
<div>
<h4 class="form-input-label">Username</h4>
<input type="text" placeholder="Enter Username or Email" title="please type email or username" pattern="(([a-zA-Z0-9]+))|(.{3,20}[@]{1}.{3,20}[.com]{4})" class="form-input-box">
</div>
<div>
<h4 class="form-input-label">Password</h4>
<input type="password" placeholder="Enter Your Password" title="password must be 8 to 20 characters long" class="form-input-box" pattern="([a-zA-Z0-9]{8,20})">
</div>
<div>
<input type="submit" value="Login" class="submit-button">
</div>
<div>
Don't Have Account? <a href="" class="create-anchor">Create Account</a>
</div>
</form>
</div>
</div>
<script>
</script>
</body>
</html>