-
Notifications
You must be signed in to change notification settings - Fork 1
/
services.html
100 lines (89 loc) · 3.3 KB
/
services.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
<title>Petshop Web - Home</title>
<script src="node_modules/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<nav class="nav-bar">
<a class="back-button" href="home.html">
<img src="images/left-arrow.svg">
</a>
<h1 class="title">Serviços</h1>
<div class="right margin-t-30 margin-r-20" v-on:click="showForm=!showForm">
<a class="float-button icon">
<img src="images/form.svg">
</a>
</div>
</nav>
<section class="services-banner">
</section>
<form action="services.html" class="form" v-if="showForm">
<label for="inputNome">Nome</label>
<input id="inputNome" type="text" placeholder="Nome">
<label for="inputAnimal">Animal</label>
<input id="inputDescricao" type="text" placeholder="Animal">
<label for="inputTipo">Tipo</label>
<input id="inputTipo" type="text" placeholder="Tipo">
<label for="inputValor">Valor</label>
<input id="inputValor" type="number" placeholder="Valor">
<button class="button-service" type="submit" onclick="servicesController.save()">Salvar</button>
<button class="button-service" type="reset" onclick="servicesController.cancel()">Cancelar</button>
</form>
<section>
<table class="table table-products">
<thead>
<th>ID</th>
<th>Nome</th>
<th>Animal</th>
<th>Tipo</th>
<th>Valor</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Jão da Silva</td>
<td>Poodle preto</td>
<td>Tosagem</td>
<td>R$ 30.00</td>
</tr>
<tr>
<td>2</td>
<td>Jão da Silva</td>
<td>Bulldog francês fêmea mt velha</td>
<td>Banho</td>
<td>R$ 1000.00</td>
</tr>
<tr>
<td></td>
<td>Jão da Silva</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Jão da Silva</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Jão da Silva</td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</section>
</div>
<script src="js/controller/services.controller.js"></script>
</body>
</html>