Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarWeb/WebContent/concepto_ed.jsp
diff options
context:
space:
mode:
authorceci <caggsld@gmail.com>2013-06-15 15:31:22 (GMT)
committer ceci <caggsld@gmail.com>2013-06-15 15:31:22 (GMT)
commitd5a07b92b5b2ece739313df0a05751300a3d05a4 (patch)
tree2080b3314fb4376000a208b8e5e784c3738fa528 /EjercitarWeb/WebContent/concepto_ed.jsp
parent5592cc2a6b46d3741b8ed1b16e69e18bc4d715e9 (diff)
Se modifico el css de las vistas Ejercicios.jsp Concepto.jsp Ejercicios.jsp Login menu_principal y sus editar
Diffstat (limited to 'EjercitarWeb/WebContent/concepto_ed.jsp')
-rw-r--r--EjercitarWeb/WebContent/concepto_ed.jsp72
1 files changed, 44 insertions, 28 deletions
diff --git a/EjercitarWeb/WebContent/concepto_ed.jsp b/EjercitarWeb/WebContent/concepto_ed.jsp
index fe37ec3..9a7c6ee 100644
--- a/EjercitarWeb/WebContent/concepto_ed.jsp
+++ b/EjercitarWeb/WebContent/concepto_ed.jsp
@@ -6,7 +6,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>Insert title here</title>
+<title>Concepto</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
@@ -17,40 +17,56 @@
<% Profesor profesor = (Profesor) request.getSession().getAttribute("profesor");%>
<% Concepto concepto = (Concepto) request.getAttribute("concepto");%>
<input name="profesor" type=hidden id="profesor" value=<%=profesor.getIdProfesor() %>>
- <input name="concepto" id="concepto" value=<%= concepto.getIdConcepto() %>>
- <input name="asignatura" id="asignatura" value=<%= request.getParameter("asignatura") %>>
- <br>
- Nombre: <input name="nombre" id= "nombre" value=<%= concepto.getNombre() %>>
- <br>
- Descripcion:
- <br>
- <textarea cols="40" rows="10" name="descripcion" > <%= concepto.getDescripcion() %> </textarea>
- <br>
- Tema: <select id="temas" name="tema">
+ <input name="concepto" type=hidden id="concepto" value=<%= concepto.getIdConcepto() %>>
+ <input name="asignatura" type=hidden id="asignatura" value=<%= request.getParameter("asignatura") %>>
+
+ <fieldset>
+
+ <p>
+ <label>Nombre:</label>
+ <input type="text" name="nombre" id= "nombre" value=<%= concepto.getNombre() %>>
+ </p>
+
+ <p>
+ <label>Descripción:</label>
+ <input type="text" name="descripcion" id="descripcion" value= <%= concepto.getDescripcion() %> ></input>
+ </p>
+ <p>
+ <label>Tema:</label>
+ <select id="temas" name="tema">
<% List<Tema> temas = (List<Tema>)request.getAttribute("lista_temas"); %>
<% for(Tema tema : temas) {%>
<option value="<%= tema.getIdTema() %>" <% if (concepto.getTema().equals(tema.getNombre())) {%> selected <% } %>>
<%= tema.getNombre() %></option>
<% } %>
</select>
- <br>
- <br> Probabilidades:
+ </p>
+
+ <fieldset>
+ <legend> Probabilidades </legend>
+ <p>
+ <label>A priori:</label>
+ <input type="text" name="a_priori" id= "a_priori" value=<%= concepto.getApriori() %> >
+ </p>
+ <p>
+ <label>Adivinanza:</label>
+ <input type="text" name="adivinanza" id="adivinanza" value=<%= concepto.getAdivinanza() %>>
+ </p>
+ <p>
+ <label>Descuido:</label>
+ <input type="text" name="descuido" id="descuido" value=<%= concepto.getDescuido() %> >
+ </p>
+ <p>
+ <label>Peso:</label>
+ <input type="text" name="peso" id="peso" value=<%= concepto.getPeso() %>>
+ </p>
+ </fieldset>
+ <p class="nolabel">
+ <input type="submit" name="Aceptar" value="Guardar">
+ <input type="submit" name="Eliminar" value="Eliminar">
+ </p>
- <br>
- A priori: <input name="a_priori" id= "a_priori" value=<%= concepto.getApriori() %>>
- <br>
- Adivinanza: <input name="adivinanza" id="adivinanza" value=<%= concepto.getAdivinanza() %>>
- <br>
- Descuido: <input name="descuido" id="descuido" value=<%= concepto.getDescuido() %>>
- <br>
- Peso: <input name="peso" id="peso" value=<%= concepto.getPeso() %>>
- <br>
- <input type="submit" name="Aceptar" value="Aceptar">
- <input type="submit" name="Eliminar" value="Eliminar">
-
-
-
-
+ </fieldset>
</form>
</div>