forked from COLTEC-DAW/TP-RESTFul-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (21 loc) · 831 Bytes
/
index.html
File metadata and controls
25 lines (21 loc) · 831 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
</head>
<body>
<script src="app.js"></script>
<main>
<input type="text" placeholder="recurso" id="recurso">
<button onclick="buscarRecurso()">Buscar</button>
<button onclick="listarRecursos()">Listar</button>
<p id="name" class="name"></p>
<p id="resources" class="resources"></p>
<div id="result" class="result"></div>
<p id="error" class="error"></p>
</main>
</body>
</html>