-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewUser.aspx
73 lines (71 loc) · 3.49 KB
/
NewUser.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="NewUser.aspx.cs" Inherits="NewUser" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link rel="icon" href="images/logo_whiteBackground_withoutBorders.png" type="image/x-icon"/>
<title>משתמש חדש BarMates</title>
<link href="css/materialize.min.css" rel="stylesheet" />
<link href="css/Login.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/></head>
<body class="main_login login_form">
<!--LOADER-->
<div id="screen_loader" class="hide">
<div id="screen_loader_inner">
<div class="preloader-wrapper active">
<div class="spinner-layer">
<div class="circle-clipper left">
<div class="circle"></div>
</div>
<div class="gap-patch">
<div class="circle"></div>
</div>
<div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
<div class="loader_text"></div>
</div>
</div>
<section>
<form id="general_form">
<fieldset id="login_fieldset">
<img id="login_logo" src="images/logo_whiteBackground.png" />
<h1 class="login_form_title">משתמש חדש</h1>
<div class="row">
<div class="input-field">
<input id="username" type="text" class="input_no_margin" onkeydown="onkeydown_register()" />
<label for="username">שם משתמש</label>
<span class="helper-text">יש לבחור שם משתמש באורך 6 עד 15 תווים המכיל לפחות אות אחת באנגלית ולפחות ספרה אחת</span>
</div>
</div>
<div class="row password-row">
<div class="input-field">
<input id="password" type="password" class="input_no_margin" onkeydown="onkeydown_register()" />
<label for="password">סיסמה</label>
<span class="helper-text">יש לבחור סיסמה באורך 6 עד 15 תווים המכיל לפחות אות אחת באנגלית ולפחות ספרה אחת</span>
</div>
<a id="showPassword" class="" href="#">
<i class="material-icons">visibility</i>
</a>
<a id="hidePassword" class="hide-icon" href="#">
<i class="material-icons">visibility_off</i>
</a>
</div>
<div class="row">
<div class="input-field col s4">
<select id="age"></select>
<label>גיל</label>
</div>
</div>
<div class="row login_submit_btn">
<a onclick="registerClick()" class="btn waves-effect waves-light btn-large" name="submit">הרשם</a>
</div>
</fieldset>
</form>
</section>
</body>
<script src="js/jquery-1.11.3.js"></script>
<script src="js/materialize.min.js"></script>
<script src="js/newUser.js"></script>
</html>