-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregistar.html
119 lines (109 loc) · 4.43 KB
/
registar.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Registar User</title>
</head>
<body>
<div class="main-div">
<div class="dropdown">
<button id="myBtn" class="dropbtn">
<div class="container btn-round" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</button>
<div id="myDropdown" class="dropdown-content">
<a href="home.html"><button>Home</button></a>
<a href="login.html" ><button>LogIn</button></a>
<a href="registar.html"><button>Reg</button></a>
</div>
</div>
</div>
<div class="reg">
<div class="regInputs">
<h3>REGISTER USER</h3>
<img src="/images/morphius.jpg" alt="NO IMAGE" class="userImg" id="userImage">
<br>
<br>
<div class="tooltip">
<input placeholder="Name" id="userName" class="tooltip" type="text">
<span class="tooltiptext">Must have more then one letter</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Last Name" id="userLastName" class="tooltip" type="text">
<span class="tooltiptext">Must have more than one letter</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Genre" id="userGenre" class="tooltip" type="text">
<span class="tooltiptext">Male/Femal M/F</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Email" id="userEmail" class="tooltip" type="text">
<span class="tooltiptext">Must have "@" letter</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Password" id="userPassword" class="tooltip" type="text">
<span class="tooltiptext">Must have atleast one number and one upercase letter</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Age" id="userAge" class="tooltip" type="text">
<span class="tooltiptext">Must be a number</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="DateOfBirth" id="userDateOfBirth" class="tooltip" type="text">
<span class="tooltiptext">Date when you are birth</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="City" id="userCity" class="tooltip" type="text">
<span class="tooltiptext">City where are you living</span>
</div>
<br>
<br>
<div class="tooltip">
<input placeholder="Country" id="userCountry" class="tooltip" type="text">
<span class="tooltiptext">Country where are you leaving</span>
</div>
<br>
<br>
<div class="tooltip">
<input type="file" id="image_uploads" class="tooltip" name="image_uploads" accept=".jpg, .jpeg, .png">
<span class="tooltiptext">Press "Choose File" and select image for your profile</span>
</div>
</div>
<div class="btns">
<button id="SubmitUser" class="Accept btn">Submit</button>
<a href="home.html"><button id="Cancil" class="Cancil btn">Cancil</button></a>
</div>
</div>
<div class="loadAnimation" id="Loader">
<div class="loader"></div>
LOADING . . .
</div>
<div id="myNotificationAdd" class="myNotification">
PODACI USPESNO UPISANI U LOCALSTORAGE
</div>
<script src="navigation.js"></script>
<script src="index.js"></script>
<script src="reg.js"></script>
</body>
</html>