-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.php
46 lines (41 loc) · 1.77 KB
/
registro.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
<?php
include 'header.php';
?>
<div class="container col-md-4" style="text-align:center">
<div class="container p-1 my-1 bg-success text-white" id="contacto">
<h2>Alta de Clientes</h2>
</div>
<footer class="w3-light-grey w3-padding-64 w3-center">
<form style="margin:auto;width:100%" role="form" method = "post" action = "alta.php">
<div class="form-group">
<label><b>Empresa</b></label>
<input class="form-control" type="text" name="empresa" placeholder="Nombre de la empresa" required>
</div>
<div class="form-group">
<label><b>Giro</b></label>
<input class="form-control" type="text" name="giro" placeholder="Ej: Plomeria" required>
</div>
<div class="form-group">
<label><b>Nombre</b></label>
<input class="form-control" type="text" name="nombre" placeholder="Nombre del Contacto" required>
</div>
<div class="form-group">
<label><b>Apellido</b></label>
<input class="form-control" type="text" name="apellido" placeholder="Apellido del Contacto" required>
</div>
<div class="form-group">
<label><b>Telefono</b></label>
<input class="form-control" type="text" name="telefono" pattern="\[0-9]{10}$" placeholder="Ej: 6641010000" required>
</div>
<div class="form-group">
<label><b>Correo</b></label>
<input class="form-control" type="email" name="correo" placeholder="Ej: [email protected]" required>
</div>
<button type="submit" class="btn btn-block btn-success" name="alta" onclick="hizoClick()" value="alta">Dar de Alta</button>
</form>
<br>
<p><strong>Powered by: </strong><a href="https://wire-less.com.mx" target="_blank" class="w3-hover-text-green">Wire-Less Solutions</a></p>
</footer>
</div>
</body>
</html>