-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1008 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registro de Usuarios</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Registro de Usuarios</h1>
<form action="register.php" method="POST" id="registrationForm">
<label for="username">Nombre de Usuario:</label>
<input type="text" id="username" name="username" required>
<label for="password">Contraseña:</label>
<input type="password" id="password" name="password" required>
<label for="id">Dni:</label>
<input type="text" id="id" name="id" required>
<div class="button-container">
<button type="submit">Registrar</button>
</div>
</form>
<div id="message"></div>
</div>
<script src="script.js"></script>
</body>
</html>