-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.php
More file actions
16 lines (16 loc) · 864 Bytes
/
form.php
File metadata and controls
16 lines (16 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<form method="POST">
<label for="summary">Summary: </label>
<input type="text" id="summary" name="summary" value="Consulta Médica"/><br/>
<label for="description" style="align-self: revert">Description: </label>
<textarea id="description" name="description">Minha consulta</textarea><br/>
<label for="starts">Start:</label>
<input id="starts" type="datetime-local" name="starts"/><br/>
<label for="ends">End:</label>
<input id="ends" type="datetime-local" name="ends"/><br/>
<label for="doctor">Doctor:</label>
<input id="doctor" type="email" name="doctor" value="raphaelcpinto@gmail.com"/><br/>
<label for="patient">Patient:</label>
<input id="patient" type="email" name="patient" value="calebgp.pers@gmail.com"/><br/><br/>
<button type="submit">Enviar</button>
<button type="reset">Limpar</button>
</form>