-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (53 loc) · 1.46 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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Datos HW </title>
<meta name="viewport" content="width=device-width, initial-
scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-primary bg-primary">
<a class="navbar-brand text-white" href="index.php">Inicio</a>
</nav>
<div class="bd-primary text-black text-center"><h1>Intro. Datos.</h1></div>
<form action="insertConexion.php" method="POST" >
<div class="container text-primary">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label for="idpc">Identificador PC </label>
<input type="text" name="idpc" class="form-control" placeholder="Identificador PC">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="ip">IP </label>
<input type="text" name="ip" class="form-control" placeholder="IP">
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label for="mac">MAC Address</label>
<input type="text" name="mac" class="form-control" placeholder="MAC">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<button type="insert" class="btn btn-primary">Registrar</button>
<button type="reset" class="btn btn-primary">Limpiar </button>
<a class="btn btn-primary" href="Form_search.php">Consultar</a>
</div>
</div>
</div>
</form>
<p>
</p>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>