-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
48 lines (45 loc) · 2.12 KB
/
Copy pathindex.php
File metadata and controls
48 lines (45 loc) · 2.12 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp" rel="stylesheet">
<title>Login</title>
</head>
<body>
<div class="content">
<main class="area-a display-f align-f">
<div class="card">
<header class="display-f">
<img class="img-h" src="./images/logo.svg" alt="logo">
</header>
<div class="display-f align-f flex">
<form action="./login.php" method="post">
<?php
if (isset($_GET['message'])) {
echo ("<label class='warning display-f'><span class='m material-icons-outlined'>
error</span>" . $_GET['message'] . "</label>");
}
?>
<label class="title margin">Enter account</label>
<label>Username</label>
<input class="border margin" type="text" name="login-hero" id="login-hero">
<label>Password</label>
<input class="border" type="password" name="pass-hero" id="pass-hero">
<input class="button black" type="submit" value="Log in">
<div class="display-f align-f">
<p>Don't have an account?</p>
<h4>Create here</h4>
</div>
</form>
</div>
</div>
</main>
<section class="area-b bg animate"></section>
</div>
</body>
</html>