-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
29 lines (29 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Formulario Básico de Registro</title>
</head>
<body>
<div id="content">
<form id="form">
<label>Nombre
<input class="required" type="text" name="name" id="name" placeholder="NOMBRE">
</label><br>
<label>E-mail
<input class="required email" type="text" name="email" id="email" placeholder="E-MAIL">
</label><br>
<label>Empresa
<input class="required" type="text" name="company" id="company" placeholder="EMPRESA">
</label><br>
<input class="enviar" type="submit" name="eviar" value="ENVIAR">
</form>
</div>
<div id="scripts">
<script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/jquery.validate.min.js"></script>
<script type="text/javascript" src="js/messages_es.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</div>
</body>
</html>