-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.html
87 lines (66 loc) · 1.62 KB
/
client.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
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Client</title>
<link rel="stylesheet" href="cliente.">
<style>
html, body{
height: 100%;width: 100%;
padding: 0;
margin: 0;
border: 0;
}
.container{
width: 100%;height: 100%;
background-image: url('./business.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
display: flex;
justify-content: center;
align-items: center;
}
.login{
width: 100%;
max-width: 400px;
height: 350px;
border-radius: 5px;
background: #ffffff45;
border: 15px solid #ffffff40 ;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input{
width: 90%;
height: 40px;
border-radius: 5px;
margin: 10px 0;
border: 3px solid black10;
font-family: arial;
text-transform: uppercase;
color: black;
}
a{
font-family: arial;
font-size: 16;
color: white;
text-transform: uppercase;
word-spacing: 5px;
margin: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="login">
<input type="email" placeholder="email">
<input type="password" placeholder="password">
<input type="submit" placeholder="enter">
<a href="Trabalho.html";>I´m not costumer / studant</a>
</div>
</div>
</body>
</html>