-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.24 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>INDEX</title>
</head>
<link rel="stylesheet" href="reset.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,900" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<body>
<div class="container">
<div class="form__top">
<h2>Formulario <span>Registro</span></h2>
</div>
<form method="POST" action="registro.php" class="form__reg">
<input class="input" type="text" name="nombre" placeholder="👤 Nombre" required autofocus>
<input class="input" type="password" name="passw" placeholder=" * Password" required>
<input class="input" type="email" name="email" placeholder="✉ Email" required>
<div class="btn__form">
<input class="btn__submit" type="submit" name="insert" value="REGISTRAR">
<input class="btn__reset" type="reset" value="LIMPIAR">
</div>
</form >
<form method="POST" action="formulario.php" class="form__reg">
<div class="btn__form">
<input class="btn__submit" type="submit" name="list" value="LISTAR">
</div>
</form>
</div>
</body>
</html>