-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
51 lines (44 loc) · 1.45 KB
/
index.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
<?php
include './data/config.php';
include './lang/loadlang.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title><?php echo $NAME_TITLE ?> | TS3 Iconos </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<br/><br/><br/>
<div class="container">
<div class="row">
<center>
<div class="panel panel-primary" style="width: 300px;">
<div class="panel-heading">
<h3 class="panel-title" style="height: 16px;"><?php echo $lang['i_title'];?></h3>
</div>
<div class="panel-body" style="width: 300px;">
<form role="form" name="formulario"method="POST"action="procesar.php">
<?php echo $lang['i_inputuid'];?><br/><br/>
<div class="form-group">
<label for="uniid">UniID:</label>
<input type="text" id="uniid" name="uniid" class="form-control" placeholder="UID">
</div>
<button type="submit" class="btn btn-default"><?php echo $lang['i_buttonsend'];?></button>
<br/>
</form>
</div>
</div>
</center>
</div>
</div>
</body>
<footer>
<center>
</footer>
</html>