-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
41 lines (41 loc) · 2 KB
/
create.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
37
38
39
40
41
/<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alta usuario</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="nonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
</head>
<body>
<main style="margin: 1% 20%;">
<div class="container">
<h1>Alta usuario</h1>
<form>
<div class="mb-3">
<label for="txtNombre">Nombre</label>
<input type="text" class="form-control" name="txtNombre" id="txtNombre"><br>
</div>
<div class="mb-3">
<label for="txtUsuario">Usuario</label>
<input type="text" class="form-control" name="txtUsuario" id="txtUsuario"> <br>
</div>
<div class="mb-3">
<label for="txtMail">Mail</label>
<input type="email" class="form-control" name="txtMail" id="txtMail"> <br>
</div>
<div class="mb-3">
<label for="txtComentario">Comentario</label>
<input type="text" class="form-control" name="txtComentario" id="txtComentario"> <br>
</div>
<button type="button" class="btn btn-success" onclick="guardar()">Grabar</button>
</form>
<br>
<a href="PanelAdministracion.html" class="btn btn-warning">Volver</a>
</div>
</main>
<script src="/js/create.js"></script>
</body>
</html>