-
Notifications
You must be signed in to change notification settings - Fork 0
/
commonQuestions.html
executable file
·200 lines (195 loc) · 6.53 KB
/
commonQuestions.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>commonQuestions</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous" />
<style type="text/css">
textarea
{
resize: none;
}
.form-check-input-reverse
{
margin-left:4.8px;
}
</style>
</head>
<body>
<div class="container-fluid">
<form>
<div class="row">
<div class="form-group col-8">
<label for="ddlTheme">Seleccione el tema</label>
<select id="ddltheme" class="form-control">
<option selected>-- Seleccionar tema --</option>
<option>Tema 1.- Obstetricia</option>
</select>
</div>
<div class="form-check col-4 align-self-center text-right p-4">
<input class="form-check-input" type="checkbox" id="inlineCheckbox1" value="option1">
<label class="form-check-label" for="inlineCheckbox1">Pregunta completada</label>
</div>
</div>
<div class="row">
<div class="form-group col-12">
<label for="exampleInputEmail1">Enunciado en castellano</label>
<input type="text" class="form-control" id="exampleInputEmail1" />
</div>
</div>
<div class="row">
<div class="form-group col-12">
<label for="exampleInputEmail2">Enunciado en gallego</label>
<input type="text" class="form-control" id="exampleInputEmail2" />
</div>
</div>
<div class="row">
<div class="input-group col-12">
<div class="input-group-prepend">
<button class="input-group-text">Subir imagen</button>
</div>
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile01" aria-describedby="inputGroupFileAddon01">
<label class="custom-file-label" for="inputGroupFile01">Elegir imagen</label>
</div>
</div>
</div>
<div class="row">
<div class="input-group col-12">
<div class="input-group-prepend">
<button class="input-group-text">Subir imagen</button>
</div>
<div class="custom-file">
<input type="file" class="custom-file-input" id="inputGroupFile02" aria-describedby="inputGroupFileAddon02">
<label class="custom-file-label" for="inputGroupFile02">Elegir imagen</label>
</div>
</div>
</div>
<div class="form-group">
<label>Respuestas</label>
<table class="table table-bordered" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="3" class="p-10 align-middle" style="background-color:#CCCCCC; width:55px;">
<div>
<label class="form-check-label" for="rbAnswer1">
A
</label>
<input class="form-check-input-reverse form-check-input" type="radio" name="answer" id="rbAnswer1" value="A" />
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control mb-0" rows="2" id="ta_Answer1Es"></textarea>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer1Ga"></textarea>
</div>
</td>
</tr>
</table>
<table class="table table-bordered" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="3" class="p-10 align-middle" style="background-color:#CCCCCC; width:55px;">
<div>
<label class="form-check-label" for="rbAnswer2">
B
</label>
<input class="form-check-input-reverse form-check-input" type="radio" name="answer" id="rbAnswer2" value="B" />
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer2Es"></textarea>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer2Ga"></textarea>
</div>
</td>
</tr>
</table>
<table class="table table-bordered" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="3" class="p-10 align-middle" style="background-color:#CCCCCC; width:55px;">
<div>
<label class="form-check-label" for="rbAnswer3">
C
</label>
<input class="form-check-input-reverse form-check-input" type="radio" name="answer" id="rbAnswer3" value="C" />
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer3Es"></textarea>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer3Ga"></textarea>
</div>
</td>
</tr>
</table>
<table class="table table-bordered" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="3" class="p-10 align-middle" style="background-color:#CCCCCC; width:55px;">
<div>
<label class="form-check-label" for="rbAnswer4">
D
</label>
<input class="form-check-input-reverse form-check-input" type="radio" name="answer" id="rbAnswer4" value="D" />
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer4Es"></textarea>
</div>
</td>
</tr>
<tr>
<td>
<div class="form-group m-0">
<textarea class="form-control" rows="2" id="ta_Answer4Ga"></textarea>
</div>
</td>
</tr>
</table>
</div>
<div class="row">
<div class="form-group col-4">
<button type="button" class="btn btn-primary">Guardar</button>
</div>
<div class="form-group col-4">
<button type="button" class="btn btn-warning">Editar</button>
</div>
<div class="form-group col-4">
<button type="button" class="btn btn-danger">Borrar</button>
</div>
</div>
</form>
</div>
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
</body>
</html>