Commit 6397fe0b by Luciano Barletta

html merge

1 parent fe791459
...@@ -28,6 +28,9 @@ ...@@ -28,6 +28,9 @@
<template id="tabTemplate"> <template id="tabTemplate">
<div class="TabCards"> <div class="TabCards">
<input class="TabTitle" placeholder="Titulo del Tab" type="text"> <input class="TabTitle" placeholder="Titulo del Tab" type="text">
<button class="RemoveTabButton" onclick="removeTab(this)">
X
</button>
<br> <br>
<div style="text-align: center;"> <div style="text-align: center;">
<button class="NewInputButton" onclick="addField(this)"> <button class="NewInputButton" onclick="addField(this)">
...@@ -40,6 +43,7 @@ ...@@ -40,6 +43,7 @@
<template id="fieldTemplate"> <template id="fieldTemplate">
<div class="InputContainer"> <div class="InputContainer">
<input type="text" id="Titulo" class="Input" placeholder="Título"> <input type="text" id="Titulo" class="Input" placeholder="Título">
<select name="input" class="Input"> <select name="input" class="Input">
<option disabled selected value="">Input</option> <option disabled selected value="">Input</option>
<option id="text" value="text">Texto</option> <option id="text" value="text">Texto</option>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!