forked from AlexandroLuis/beecrowd-problems-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
45 lines (43 loc) · 1.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Página Inicial - BeeCrowd Problems</title>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.2.0/css/all.css'>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.2.0/css/fontawesome.css'>
<link rel="stylesheet" href="Style/style_index.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<div class="screen">
<div class="screen__content">
<form class="login" method="POST" action="VerifyUserProfile.php">
<div class="login__field">
<i class="login__icon fas fa-user"></i>
<input type="text" class="login__input" name="usuario" placeholder="Usuario">
</div>
<div class="login__field">
<i class="login__icon fas fa-lock"></i>
<input type="password" class="login__input" name="senha" placeholder="Senha">
</div>
<button class="button login__submit">
<span class="button__text">Entrar</span>
<i class="button__icon fas fa-chevron-right"></i>
</button>
</form>
<div class="social-login">
<h3>Registre-se</h3><a href="CreateNewUser.php" style="text-decoration: none; color: white">Clique Aqui</a>
</div>
</div>
<div class="screen__background">
<span class="screen__background__shape screen__background__shape4"></span>
<span class="screen__background__shape screen__background__shape3"></span>
<span class="screen__background__shape screen__background__shape2"></span>
<span class="screen__background__shape screen__background__shape1"></span>
</div>
</div>
</div>
<!-- partial -->
</body>
</html>