-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewUserPage.html
63 lines (61 loc) · 2.16 KB
/
newUserPage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mapal</title>
<link rel="shortcut icon" type="image/x-icon" href="graphics/headerlogo.ico" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-beta1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
<script src="bootstrap/js/npm.js"></script>
<script src="head/userDbHead.js" type="text/javascript"></script>
<style>
.jumbotron {
position: relative;
background: #000 url("graphics/Logo-white.png") center center no-repeat;
width: 100%;
height: 275px;
background-size:53%;
overflow: hidden;
background-color: #f4511e;
color: #fff
}
</style>
</head>
<script>
</script>
<body>
<div class="jumbotron container">
</div>
<div class="container">
<h2>Create user</h2>
<form class="form-horizontal" role="form">
<div class="form-group">
<label class="control-label col-sm-2" for="user_name">Username:</label>
<div class="col-sm-10">
<input type="user_name" class="form-control" id="user_name" placeholder="Enter username">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="email">Email:</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Enter email">
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">Password:</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="pwd" placeholder="Enter password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="button" id="createUser" class="btn btn-default" onclick="manageUser('newUser')">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>