-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sing-In.html
75 lines (67 loc) · 2.03 KB
/
Sing-In.html
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>Sing In</title>
<meta charset="utf-8">
<style>
html,body{
height: 100%;
background-image: url('./src/imagens/one-piece-anime-artwork-i6-2560x1700.jpg');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.Sing_In {
display: flex;
flex-wrap: wrap;
flex-direction: column;
width: 100%;
align-items: center;
justify-content: center;
font-size: 25px;
}
.form{
display: flex;
flex-direction: column;
}
.form input[type=email], input[type=password]{
margin: 20px;
width: 400px;
height: 35px;
border-radius: 10px;
padding-left: 10px;
font-size: 20px;
}
.form input[type=submit]{
height: 35px;
width: 400px;
margin: 0 auto;
border: 0;
border-radius: 50px;
background-color: blueviolet;
color: black;
font-size: 25px;
}
footer{
display:flex;
align-items: center;
justify-content: center;
position: relative;
top:300px;
font-size:20px;
color:black;
}
</style>
</head>
<body>
<section class="Sing_In">
<h2>Sing In</h2>
<form class="form">
<input type="email" name="text" placeholder="Digite seu e-mail">
<input type="password" name="password" placeholder="Digite sua Senha">
<input type="submit" value="Entrar">
</form>
</section>
<footer>Todos os Direitos Reservado</footer>
</body>
</html>