-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 1005 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<title>Aluno API - index</title>
</head>
<body>
<fieldset>
<legend style="font-weight: bold">Aluno API</legend>
<table>
<thead>
<tr style="font-weight: bold">
<td>Endpoint</td>
<td>Method</td>
<td>Objective</td>
</tr>
</thead>
<tbody>
<tr>
<td>/api/alunos/</td>
<td>GET</td>
<td>Retrieve All Aluno</td>
</tr>
<tr>
<td>/api/aluno/{nome}</td>
<td>GET</td>
<td>Get Aluno</td>
</tr>
<tr style="color: blue">
<td>/api/aluno</td>
<td>POST</td>
<td>Register Aluno</td>
</tr>
<tr style="color: green">
<td>/api/aluno/{aluno}</td>
<td>PUT</td>
<td>Update Aluno</td>
</tr>
<tr style="color: red">
<td>/api/aluno/{nome}</td>
<td>DELETE</td>
<td>Inactive Aluno</td>
</tr>
</tbody>
</table>
</fieldset>
<!--
<form method="GET" action="/api/alunos">
<input type="text" id="nome" name="nome">
<input type="submit">
</form>
-->
</body>
</html>