-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminServices.html
107 lines (98 loc) · 4.45 KB
/
adminServices.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
101
102
103
104
105
106
107
<div class="col-sm-6">
<div class="month" style="text-align: center">
<ul>
<li class="prev">❮</li>
<li class="next">❯</li>
<li> Abril<br>
<span style="font-size: 18px; color: aqua">2017</span></li>
</ul>
</div>
<ul class="weekdays">
<li>Seg</li>
<li>Ter</li>
<li>Qua</li>
<li>Qui</li>
<li>Sex</li>
<li>Sab</li>
<li>Dom</li>
</ul>
<ul class="days">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
<li>11</li>
<li>12</li>
<li>13</li>
<li>14</li>
<li>15</li>
<li><span class="active">16</span></li>
<li>17</li>
<li>18</li>
<li>19</li>
<li>20</li>
<li>21</li>
<li>22</li>
<li>23</li>
<li>24</li>
<li>25</li>
<li>26</li>
<li>27</li>
<li>28</li>
<li>29</li>
<li>30</li>
</ul>
</div>
<div class="col-sm-6">
<select id="selectAdminServices" style="color: black; width: 50%; font-size: large; border-radius: 7px; font-weight: bold">
<option value="tosa">Tosa</option>
<option value="banho">Banho</option>
<option value="passeio">Passeio</option>
</select>
<table cellpadding="0" cellspacing="1" style="border: 1px solid black; width: 100%; margin-top: 5px">
<table cellspacing="0" cellpadding="0" style="border: 1px solid black; width: 100%">
<tr style="background-color: darkblue">
<th style="width: 9%">Selecione</th>
<th>Horário</th>
<th>Com Serviço</th>
<th>Preço</th>
</tr>
</table>
<td>
<div style="width: 100%; height: 250px; overflow: auto">
<table id="tableAdminServices" cellspacing="0" cellpadding="0" style="border: 1px solid black; width: 100%">
<tr>
<td style="width: 10%"><input type="checkbox" style="margin-left: 50%"></td>
<td>15:30</td>
<td>Sim</td>
<td>$ 300,00</td>
</tr>
<!--Aqui deve ser colocado os dados conseguidos através de um AJAX -->
</table>
</div>
</td>
</table>
<button class="btn"
style="background-color: darkblue; width: 100%; margin-top: 5px"><span
style="font-size: large; color: white; ">Remover Serviço</span></button>
<div class="div-signIn">
<form id="formAdminServices">
<div class="div-field">
Hora:
<input name="hour" type="text" placeholder="00:00"/>
</div>
<div class="div-field">
Preço:
<input name="price" type="text" placeholder="$ 000,00"/>
</div>
<button class="btn" style="background-color: darkblue; width: 100%; margin-top: 10px"><span
style="font-size: large; color: white; margin-top: 5px">Registrar Serviço</span></button>
</form>
</div>
</div>