This repository has been archived by the owner on Dec 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
59 lines (59 loc) · 2.22 KB
/
register.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
<!DOCTYPE html>
<html lang="pl">
<head>
<link rel="apple-touch-icon" href="img/logo.png">
<meta name="theme-color" content="#85a314"/>
<meta name="description" content="strona dozarządzania magazynem">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>
E-Magazyn
</title>
<link rel="manifest" href="/manifest.json">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<script type="text/javascript" src="js/basicFunctions.js"></script>
<script type="text/javascript" src="js/auth.js"></script>
<body class="fulscreen">
<div class="container">
<h1 class="title">
E-Magazyn
</h1>
<h2 class="splash">
Zarejestruj się
</h2>
<div id="result"></div>
<form id="register" >
<table>
<tr>
<td>
<label for="login">Imie i nazwisko:</label>
</td>
<td>
<input id="name" type="text" name="name" />
</td>
</tr>
<tr>
<td>
<label for="email">Email:</label>
</td>
<td>
<input id="email" type="text" name="login" />
</td>
</tr>
<tr>
<td>
<label for="password">Hasło:</label>
</td>
<td>
<input id="password" type="password" name="password" />
</td>
</tr>
</table>
</form>
<input type="button" class="buttons" onclick="register()" value="zarejestruj">
<a href="/index.html"><input type="button" value="powrót do strony głównej"></a>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>