forked from andresbejarano/DentalRegistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adduser.php
165 lines (162 loc) · 7.26 KB
/
adduser.php
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php
session_start();
include('modules/dbhandler.php');
include('modules/functions.php');
if(isset($_SESSION['id'])){
if(!($_SESSION['privileges'] == 'sec' || $_SESSION['privileges'] == 'aux' || $_SESSION['privileges'] == 'den' || $_SESSION['privileges'] == 'man' || $_SESSION['privileges'] == 'web')){
header('Location:denied.php');
}
}
else{
header('Location:index.php');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dental: Agregar Usuario</title>
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico" />
<?php include('includes/styles.php');?>
<?php include('includes/jquery.php');?>
<script type="text/javascript" src="js/adduser.js"></script>
</head>
<body>
<div id="header">
<div class="center"><a href="menu.php"><img alt="logo" src="images/logo.png" /></a></div>
<ul class="innerlinks">
<li><a href="adduser.php">Agregar Usuario</a></li>
<li><a href="loaduser.php">Cargar Usuario</a></li>
<li><a href="userslist.php">Lista de Usuarios</a></li>
</ul>
<div class="usersession">
<img alt="user" src="images/user.png" />
Registrado como <?php echo $_SESSION['firstname'] . ' ' . $_SESSION['firstlastname'] . ' ' . $_SESSION['secondlastname'];?> |
<a href="logout.php" class="session">Cerrar Sesión</a>
</div>
</div>
<div id="outer-wrapper">
<fieldset>
<legend>Agregar Usuario</legend>
<form action="#">
<p class="form">
<label for="documenttype">Tipo de Identificación</label>
<select id="documenttype" name="documenttype">
<option value="1">Cédula de Ciudadanía</option>
<option value="2">Tarjeta de Identidad</option>
<option value="3">Registro Civil</option>
<option value="4">Pasaporte</option>
<option value="5">Cédula de Extranjería</option>
</select>
</p>
<p class="form">
<label for="documentnumber">*No. Identificación</label>
<input id="documentnumber" name="documentnumber" type="text" style="width:10%;" />
</p>
<p class="form">
<label for="firstname">*Primer Nombre</label>
<input id="firstname" name="firstname" type="text" />
</p>
<p class="form">
<label for="middlename">Segundo Nombre</label>
<input id="middlename" name="middlename" type="text" />
</p>
<p class="form">
<label for="firstlastname">*Primer Apellido</label>
<input id="firstlastname" name="firstlastname" type="text" />
</p>
<p class="form">
<label for="secondlastname">*Segundo Apellido</label>
<input id="secondlastname" name="secondlastname" type="text" />
</p>
<p class="form">
<label for="sex">Sexo</label>
<select id="sex" name="sex">
<option value="1">Masculino</option>
<option value="2">Femenino</option>
</select>
</p>
<p class="form">
<label for="birthdate">*Fecha de Nacimiento</label>
<input id="birthdate" name="birthdate" type="text" style="width:10%;" />
<span style="font-style:italic;">mm/dd/aaaa</span>
</p>
<p class="form">
<label for="bloodtype">R.H.</label>
<select id="bloodtype" name="bloodtype">
<option value="1">O-</option>
<option value="2">O+</option>
<option value="3">A-</option>
<option value="4">A+</option>
<option value="5">B-</option>
<option value="6">B+</option>
<option value="7">AB-</option>
<option value="8">AB+</option>
</select>
</p>
<p class="form">
<label for="address">*Dirección</label>
<input id="address" name="address" type="text" />
</p>
<p class="form">
<label for="phonehome">*Teléfono fijo</label>
<input id="phonehome" name="phonehome" type="text" style="width:10%;" />
</p>
<p class="form">
<label for="phoneoffice">Teléfono oficina</label>
<input id="phoneoffice" name="phoneoffice" type="text" style="width:10%;" />
</p>
<p class="form">
<label for="cellnumber">Celular</label>
<input id="cellnumber" name="cellnumber" type="text" style="width:10%;" />
</p>
<p class="form">
<label for="email">Correo Electrónico</label>
<input id="email" name="email" type="text" />
</p>
<p class="form">
<label for="maritalstatus">Estado Civil</label>
<select id="maritalstatus" name="maritalstatus">
<option value="1">Soltero</option>
<option value="2">Casado</option>
<option value="3">Unión Libre</option>
<option value="4">Separado</option>
<option value="5">Divorciado</option>
<option value="6">Viudo</option>
</select>
</p>
<p class="form">
<label for="dentist">¿Activar como dentista?</label>
<select id="dentist" name="dentist">
<option value="0">No</option>
<option value="1">Si</option>
</select>
</p>
<p class="form">
<label for="specialty">*Especialidad (solo si es dentista)</label>
<select disabled="disabled" id="specialty" name="specialty"><?php writeSpecialtyList();?></select>
</p>
<p class="form">
<label for="username">*Nombre de usuario</label>
<input id="username" name="username" type="text" style="width:10%;" />
</p>
<p class="form">
<label for="privileges">Privilegios</label>
<select id="privileges" name="privileges">
<option value="1">Secretaría</option>
<option value="2">Auxiliar</option>
<option value="3">Dentista</option>
<option value="4">Gerente</option>
<option value="5">Webmaster</option>
</select>
</p>
<p class="form center">
<img alt="loader" id="loader" src="images/loader.gif" style="display:none;" />
<input type="button" value="Ingresar Nuevo Usuario" />
</p>
</form>
</fieldset>
<div id="message" style="display:none;"></div>
</div>
</body>
</html>