Commit 21491ae8 by Georgina Mondino

Cambio en js, aparicion de texto abajo y Boton de Continuar

1 parent 3f38d84a
...@@ -21,6 +21,8 @@ function removeTab(b){ ...@@ -21,6 +21,8 @@ function removeTab(b){
} }
function addTab(t){ function addTab(t){
document.getElementById("ContinuarText").style.display = 'block';
document.getElementById("ContinuarButton").style.display = 'block';
let newtab = document.createElement("div"); let newtab = document.createElement("div");
newtab.setAttribute("name","Tab"); newtab.setAttribute("name","Tab");
newtab.innerHTML = document.getElementById("tabTemplate").innerHTML; newtab.innerHTML = document.getElementById("tabTemplate").innerHTML;
......
...@@ -65,3 +65,19 @@ body{ ...@@ -65,3 +65,19 @@ body{
border: 3px solid rgb(230, 25, 25); border: 3px solid rgb(230, 25, 25);
background-color: rgba(211, 14, 14, 0.788); background-color: rgba(211, 14, 14, 0.788);
} }
#ContinuarText, #ContinuarButton{
display: none;
}
#ContinuarButton{
font-size: 20px;
border: none;
background-color: rgb(1, 194, 120);
color: rgb(255, 255, 255);
margin: 2%;
text-align: center;
width: 96%;
height: 2.5em;
border-radius: 5px;
}
\ No newline at end of file \ No newline at end of file
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
+ +
</button> </button>
</div> </div>
<h3 id="ContinuarText">Cuando se encuentre conforme con el formulario presione Continuar</h3>
<button id="ContinuarButton"> Continuar </button>
</body> </body>
<!-- templates --> <!-- templates -->
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!