-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (29 loc) · 1.11 KB
/
index.php
File metadata and controls
32 lines (29 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nova Ordem de Serviço</title>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="loading">
<div class="loading-spinner"></div>
</div>
<div class="container">
<h1>Criar Nova Ordem de Serviço</h1>
<div action="index.php" method="GET">
<div class="form-group">
<label for="tipo">Tipo de Ordem de Serviço:</label>
<select id="tipo" name="tipo" required onchange="atualizarFormulario()">
<option value="">Selecione o tipo...</option>
</select>
</div>
<button type="button" class="submit-btn" onclick="copiarOS()">Criar Nova OS</button>
</div>
</div>
<textarea id="osFormatada" style="position: absolute; left: -9999px;"></textarea>
<script src="script.js"></script>
</body>
</html>