generated from github/haikus-for-codespaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html
72 lines (62 loc) · 2.36 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="diseño.css">
<title>PRACTICA</title>
</head>
<body>
<div class="row">
<div class="col-3">
<label for="">NOMBRE:</label>
<input type="text" class="form form-control" id="Nombre">
</div>
<br>
<div class="col-3">
<label for="">EDAD:</label>
<input type="text" class="form form-control" id="Edad" >
</div>
<br>
<div class="col-3">
<label for="">SEXO:</label>
<select name="genero" id="genero">
<option selected>---</option>
<option value="femenino">FEMENINO</option>
<option value="masculino">MASCULINO</option>
</select>
</div>
</div>
<br>
<br>
<br>
<br>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" id="PAGAR">
REGISTRAR
</button>
<!-- Modal -->
<div id="miModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title" id="Label" >REGISTRO CORRECTO!!!!!!</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body"id="letras">
<img src="imagen/correcto.jpg" alt="">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" id="newregistro" onclick="redireccion()">REALIZAR OTRO REGISTRO</button>
<button type="button" class="btn btn-primary">TERMINAR REGISTRO</button>
</div>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="principal.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-mQ93GR66B00ZXjt0YO5KlohRA5SY2XofN4zfuZxLkoj1gXtW8ANNCe9d5Y3eG5eD" crossorigin="anonymous"></script>