-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
97 lines (97 loc) · 5.01 KB
/
signup.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
96
97
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
Push Fede 23
Push Giovi
-->
<html>
<head>
<title>Oasis Registrati</title>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/account.css">
<script type="text/javascript" src="assets/script/sticky_navbar.js"></script>
</head>
<body>
<header>
<nav id="topnav">
<a class="homelink" href="home.html">
<img src="assets/img/logo.png">
<span> OASIS </span>
</a>
<ul>
<li ><a href="home.html">HOME</a></li>
<li><a href="products.html">PRODOTTI</a></li>
<li><a href="howtobuy.html">COME ACQUISTARE</a></li>
<li class="active" id="account">
<div class="dropdown">
<a id="profile">
ACCOUNT
<img src="assets/img/profile.png">
</a>
<div class="dropdown-content">
<a href="login.html">ACCEDI</a>
<a href="signup.html">REGISTRATI</a>
</div>
</div>
</li>
<li id="staff"><a href="staffdashboard.html"> AREA STAFF</a></li>
<li id="admin"><a href="admindashboard.html"> AREA ADMIN</a></li>
</ul>
</nav>
</header>
<div id="main">
<div class="account_box">
<h2> Registrati </h2>
<form>
<input type="text" placeholder="Nome">
<br>
<input type="text" placeholder="Cognome">
<br>
<input type="text" placeholder="Username">
<br>
<input type="text" placeholder="Email">
<br>
<input type="password" placeholder="Password">
<br>
<input type="text" placeholder="Indirizzo di residenza">
<br>
<div class="date_job">
<input type="date" placeholder="Data di nascita">
<select id="select">
<option class="select_placeholder" value="" disabled selected hidden>Occupazione</option>
<option value="0">Studente</option>
<option value="1">Operaio</option>
<option value="2">Libero professionista</option>
<option value="3">Disoccupato</option>
</select>
</div>
<br>
<input type="submit" value="Registrati">
<br>
</form>
<b> Possiedi già un account? <a href="login.html"> ACCEDI </a> </b>
<div id="error_msg"> Password errata! </div>
</div>
</div>
<footer class="main_footer">
<a href="about.html"> Contattaci </a>
<br>
<a href="privacypolicy.html"> Privacy e policy </a>
<div class="linksocial">
<img src="assets/img/social-icons.png" usemap="#social-icons-map">
<map name="social-icons-map">
<area target="_blank" alt="instagram" title="instagram" href="https://www.instagram.com/" coords="134,157,154,146,162,132,164,68,158,48,136,31,68,31,48,41,36,63,36,127,46,145,64,157" shape="poly">
<area target="_blank" alt="facebook" title="facebook" href="https://www.facebook.com/" coords="250,158,354,158,364,145,364,43,354,30,248,30,236,41,236,148" shape="poly">
<area target="_blank" alt="twitter" title="twitter" href="https://twitter.com/" coords="436,135,452,141,466,145,478,145,490,145,502,143,512,137,522,133,530,127,536,117,542,111,546,101,548,89,550,79,550,67,564,55,554,55,560,43,544,47,538,45,532,41,526,41,518,41,510,45,506,48,500,52,498,62,500,73,492,73,482,71,474,69,464,65,458,59,452,53,446,47,444,51,442,58,442,66,446,75,452,81,440,77,442,85,446,93,454,103,448,103,452,111,460,117,468,123,466,129,452,131" shape="poly">
</map>
</div>
<div class="copyright"> © 2020 Oasis </div>
<div class="hide">Tutti i diritti sono riservati. Qualsiasi riproduzione, anche parziale, senza autorizzazione scritta è vietata.</div>
</footer>
</body>
</html>