-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.php
More file actions
130 lines (89 loc) · 2.88 KB
/
signup.php
File metadata and controls
130 lines (89 loc) · 2.88 KB
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
120
121
122
123
124
125
126
127
128
129
130
<html>
<head>
<title>Add User</title>
<style type="text/css">
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
body {
background: #fff;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
}
</style>
<link rel="stylesheet" type="text/css" href="css/materialize.min.css">
</head>
<body>
<!--
<div class="container">
<div class="row">
<div class="section"></div> -->
<main>
<!-- <center> -->
<div class="container">
<div class="z-depth-3 y-depth-3 x-depth-3 grey green-text lighten-4 row" style="display: inline-block; width: 40%; padding: 0px 48px 0px 48px; border: 1px; margin-top: 10px; solid #EEE;">
<h3 style="color:#26a69a;margin-bottom:10%; ">Add User</h3>
<i class="mdi-alert-error red-text"></i>
<div>
<div class='input-field col s12'>
<input class='validate' type="text" name='name' id='username' required / style="padding:">
<label for='username'>Username</label>
</div>
</div>
<div>
<div class='input-field col s12'>
<input class='validate' type="password" name='password' id='password' required />
<label for='password'>Password</label>
</div>
</div>
<div>
<div class='input-field col s12'>
<input class='validate' type="password" name='conf_pass' id='conf_pass' required />
<label for='conf_pass'>Confirm Password</label>
</div>
</div>
<div>
<div class='input-field col s12'>
<!-- <input class='validate' type="user_type" name='user_type' id='user_type' required /> -->
<label for='user_type'>User Type</label>
</div>
</div>
<div>
<li style="float:left;list-style-type:none;">
<label>
<input name="group1" type="radio" />
<span>Teacher</span>
</label>
</li>
<li style="list-style-type:none;">
<label style="margin-left:90px;">
<input name="group1" type="radio" />
<span>Student</span>
</label>
</li>
</div>
<!-- <center> -->
<div class='row' style="color:white;padding:10%; ">
<button style="margin-left:50px;color:white;font-size: 1rem" type='submit' name='btn_signup' class='col s7 btn btn-small white waves-effect z-depth-1 y-depth-1 teal lighten-1'>sign up</button></div>
<!-- </center> -->
</div>
</div>
<!-- </center> -->
</main>
</div>
</div>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script src="js/jquery-3.4.1.min.js"></script>
</body>
</html>