-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_scania.html
105 lines (98 loc) · 3.43 KB
/
index_scania.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="X-UA-Compatible" http-equiv="IE=edge" />
<noscript
><meta
content="0;url=https://static.scania.com/vendors/components/pure-js/nonJS-browsers/1.0.0/nonJS-browsers.html"
http-equiv="refresh"
/></noscript>
<script src="https://static.scania.com/vendors/components/pure-js/browser-reject/1.0.0/js/browser-reject.js"></script>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>RTM DIGITAL - Interfencias & Acción</title>
<script src="https://static.scania.com/build/global/3.5.5/js/corporate-ui.js"></script>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
type="text/css"
href="https://static.scania.com/resources/fonts/scania-sans/scania-sans.css"
/>
</head>
<body class="scania app">
<c-corporate-header site-name="RTM DIGITAL" short-name="My app" site-url="">
</c-corporate-header>
<c-main-content>
<h1 class="main-content__h1">INTERFERENCIAS - ACCIÓN</h1>
<div class="container-fluid">
<form class="container-fluid__form" action="#" id="containerFluid">
<label class="form__label" for="TaktID">* Interferencia N°:</label>
<input
class="container-fluid__input"
name="TaktID"
placeholder="Ingrese n° de interfencia"
type="text"
id="taktID"
title="No se puede modificar"
/>
<label class="form__label" for="Acción">* Acción:</label>
<input
class="container-fluid__input"
name="Acción"
placeholder="Ingrese la acción"
type="text"
id="accion"
/>
<label class="form__label" for="Responsable">Responsable:</label>
<input
class="container-fluid__input"
name="Responsable"
placeholder="Ingrese el responsable"
type="text"
id="responsable"
/>
<label class="form__label" for="Estado">* Estado:</label>
<select id="estado" placeholder="Seleccione estado">
<option value="true">Abierto</option>
<option value="false">Cerrado</option>
</select>
<label class="form__label" for="Vencimiento">Vencimiento:</label>
<input
class="container-fluid__input"
name="Vencimiento"
placeholder="Vencimiento"
type="datetime-local"
id="vencimiento"
/>
<label class="form__label" for="Comentarios">Comentarios:</label>
<input
class="container-fluid__input"
name="Comentarios"
placeholder="Comentarios"
type="text"
id="comentarios"
/>
<h3 class="form__h3">Los campos con * son obligatorios</h3>
<div class="buttons">
<button class="btn btn-primary" type="submit" id="submitButton">
CONFIRMAR
</button>
<button
href="#"
class="btn btn-secondary"
type="button"
id="deleteButton"
>
BORRAR
</button>
</div>
</form>
</div>
</c-main-content>
<c-corporate-footer> </c-corporate-footer>
<script src="postData.js"></script>
</body>
</html>