-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
33 lines (31 loc) · 1.24 KB
/
settings.php
File metadata and controls
33 lines (31 loc) · 1.24 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
<html>
<?php
include './php/head.php';
?>
<body>
<div class="col-lg-3">
</div>
<div class="col-lg-5 panel panel-success">
<div class="alert alert-success" id="mensajeSettings">
<b>formulario de registro del administrador</b>
</div>
<form class="form" method="POST" id="formularioSettings">
<span class="glyphicon glyphicon-user"><b>cuenta administrador</b></span>
<div class="control-group">
<input type="text" class="form-control campoNombres" name="cuenta" id="cuenta"/>
</div>
<span class="glyphicon glyphicon-user"><b>nombres administrador</b></span>
<div class="control-group">
<input type="text" class="form-control campoNombres" name="nombres" id="nombres"/>
</div>
<span class="glyphicon glyphicon-lock"><b>password administrador</b></span>
<div class="control-group">
<input type="password" class="form-control campoNombres" name="pass" id="pass" />
</div><br/>
<input type="submit" value="configurar" class="btn btn-primary"/>
</form>
</div>
<div class="col-lg-3">
</div>
</body>
</html>