-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (87 loc) · 2.32 KB
/
index.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
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
}
img {
max-width: 50%;
max-height: 50%;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #F2F2F2;
}
.title {
font-family: Arial, sans-serif;
font-size: 36px;
font-weight: bold;
color: #333333;
margin-bottom: 20px;
}
.form {
width: 80%;
max-width: 600px;
height: 400px;
border: 1px solid #CCCCCC;
border-radius: 10px;
background-color: #FFFFFF;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.input {
width: 80%;
height: 40px;
border: 1px solid #CCCCCC;
border-radius: 5px;
padding: 10px;
font-family: Arial, sans-serif;
font-size: 18px;
color: #333333;
}
.button {
width: 80%;
height: 60px;
border: none;
border-radius: 10px;
background-color: #FF9900;
font-family: Arial, sans-serif;
font-size: 24px;
font-weight: bold;
color: #FFFFFF;
cursor: pointer;
}
.button:hover {
background-color: #FF6600;
}
</style>
</head>
<body>
<img src="MAG_Logo.png"/>
<div class="container">
<div class="title">Registro di classe</div>
<div class="form">
<input class="input" type="text" placeholder="Nome" />
<input class="input" type="text" placeholder="Cognome" />
<input class="input" type="text" placeholder="email" />
<input class="input" type="password" placeholder="Password" />
<button class="button"><a href="registri.html">Accedi</a></button>
</div>
</div>
</body>
</html>