-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateav.html
More file actions
36 lines (32 loc) · 841 Bytes
/
Copy pathupdateav.html
File metadata and controls
36 lines (32 loc) · 841 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
26
27
28
29
30
31
32
33
34
35
36
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="style.css">
<title>Repair</title>
<style>
body {
margin: 0;
padding: 0;
background-image: url('averias.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
</head>
<body>
<div id="updateav">
<h2>Seleccionar averia arreglada</h2>
<form action="calendario.html" method="get">
<label for="turno">Averia:</label>
<select id="turno" name="turno">
<option value="av1">av1</option>
<option value="av2">av2</option>
<option value="av3">av3</option>
<option value="av4">av4</option>
</select><br><br>
<input type="submit" value="Avisar">
</form>
</div>
</body>
</html>