Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/EjercitarWeb/WebContent/Concepto.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'EjercitarWeb/WebContent/Concepto.jsp')
-rw-r--r--EjercitarWeb/WebContent/Concepto.jsp46
1 files changed, 46 insertions, 0 deletions
diff --git a/EjercitarWeb/WebContent/Concepto.jsp b/EjercitarWeb/WebContent/Concepto.jsp
new file mode 100644
index 0000000..7c66176
--- /dev/null
+++ b/EjercitarWeb/WebContent/Concepto.jsp
@@ -0,0 +1,46 @@
+<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
+ pageEncoding="ISO-8859-1"%>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
+<title>Insert title here</title>
+</head>
+<body>
+ <%@page import="java.util.List" import="model.Tema" %>
+
+<form style="width: 1071px; height: 521px;" method="post" name="ejercicio_form">
+ <br>
+ Profesor: <input name="profesor" id="profesor">
+ <br>
+ Nombre: <input name="nombre" id= "nombre">
+ <br>
+ Descripcion:
+ <br>
+ <textarea cols="40" rows="10" name="descripcion"></textarea>
+ <br>
+ Tema: <select id="temas" name="tema">
+ <% List<Tema> temas = (List<Tema>)request.getAttribute("lista_temas"); %>
+ <% for(Tema tema : temas) {%>
+ <option value="<%= tema.getIdTema() %>"><%= tema.getNombre() %></option>
+ <% } %>
+ </select>
+ <br>
+ <br> Probabilidades:
+
+ <br>
+ A priori: <input name="a_priori" id= "a_priori">
+ <br>
+ Adivinanza: <input name="adivinanza" id="adivinanza">
+ <br>
+ Descuido: <input name="descuido" id="descuido">
+ <br>
+ Peso: <input name="peso" id="peso">
+ <br>
+ <input type="submit" name="Aceptar" value="Aceptar1">
+
+ </form>
+</body>
+
+
+</html> \ No newline at end of file