-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.57 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.57 KB
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
<!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">
<title>REST FULL APPLICATION</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/lumen/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/b557973bcf.js" crossorigin="anonymous"></script>
<script src="js/script.js"></script>
</head>
<body>
<div class="cointainer"></div>
<h1>REST Full Data</h1>
<div id='datos'></div>
</div>
<!-- Modal -->
<div class="modal fade" id="dataModal" tabindex="-1" aria-labelledby="dataModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="dataModalLabel">User Data</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<input type='hidden' id='method' name='method' />
<input type='hidden' id='key' name='key' />
<div class='form-group'>
<label>Email</label>
<input class='form-control' type='text' maxlength="100" size='60'
name='email' id='email' required>
</div>
<div class='form-group'>
<label>Password</label>
<div class='input-group mb-3'>
<input class='form-control' type='password' maxlength="30" size='35'
name='passcode' id='passcode' required>
<div class='input-group-append'>
<button class='btn btn-secondary' type='button' id='btnShow'>
<i class="fas fa-eye"></i>
</button>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" id='btnAction' class="btn btn-primary">Save</button>
</div>
</div>
</div>
</div>
</body>
</html>