🐛 Add form to main structure

This commit is contained in:
Hacki 2023-10-02 22:03:52 +02:00 committed by Ada
parent a3d7b2b9da
commit 7a32a44877

View file

@ -9,30 +9,32 @@
<link href="/static/style.css" rel="stylesheet"> <link href="/static/style.css" rel="stylesheet">
</head> </head>
<body> <body>
<label for="content"></label> <form>
<textarea id="content" name="content" placeholder="Your paste here"></textarea> <label for="content"></label>
<nav> <textarea id="content" name="content" placeholder="Your paste here"></textarea>
<ul> <nav>
<li> <ul>
<label for="password">Password?</label> <li>
<input id="password" type="text"> <label for="password">Password?</label>
</li> <input id="password" type="text">
<li><label for="exp">Expiration?</label> </li>
<input id="exp" type="date"></li> <li><label for="exp">Expiration?</label>
<li> <input id="exp" type="date"></li>
<label for="type">Type</label> <li>
<select id="type" name="type"> <label for="type">Type</label>
<option value="">Plaintext</option> <select id="type" name="type">
<option value="">Python</option> <option value="">Plaintext</option>
</select> <option value="">Python</option>
</li> </select>
</ul> </li>
<button> </ul>
<svg height="26" viewBox="0 0 24 24" width="26" xmlns="http://www.w3.org/2000/svg"> <button>
<polyline points="9 11 12 14 22 4"></polyline> <svg height="26" viewBox="0 0 24 24" width="26" xmlns="http://www.w3.org/2000/svg">
<path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path> <polyline points="9 11 12 14 22 4"></polyline>
</svg> <path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>
</button> </svg>
</nav> </button>
</nav>
</form>
</body> </body>
</html> </html>