-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (56 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Bobbify.music </title>
</head>
<body style="background-image: url(https://img.freepik.com/premium-photo/white-green-background_670147-37659.jpg);
background-size: cover;
background-repeat: no-repeat;">
<h1>Benvenuto su Bobbify!</h1>
<h3>Registrati per accedere ai contenuti</h3>
<form onsubmit="alert('form inviato')">
<table style="background-color: aquamarine;">
<tr>
<td>Nome:</td>
<td><input type="text" name="nome"></td>
</tr>
<tr>
<td>Cognome:</td>
<td><input type="text" name="cognome"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="email" name="email"></td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password"></td>
</tr>
<tr>
<td>Data di Nascita:</td>
<td><input type="date" name="dataNascita"></td>
</tr>
<tr>
<td>Numero di Telefono:</td>
<td><input type="number" name="telefono"></td>
</tr>
<tr>
<td>Gusti Musicali:</td>
<td>
<input type="checkbox" name="gustoMusicale" value="Rock"> Rock
<input type="checkbox" name="gustoMusicale" value="Rap"> Rap
<input type="checkbox" name="gustoMusicale" value="Elettronica"> Elettronica
</td>
</tr>
<tr>
<td>Accettazione Termini e Condizioni:</td>
<td>
<input type="radio" name="accettazione" value="accettato"> Accetto
</td>
</tr>
</table>
</form>
</body>
</html>