Web: Remove unnecessary tags

This commit is contained in:
Unrud 2020-01-16 03:58:30 +01:00
parent 60de01870e
commit 1e27581afd

View File

@ -1,20 +1,20 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="utf-8" /> <meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" /> <meta name="viewport" content="width=device-width initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="fn.js"></script> <script src="fn.js"></script>
<title>Web interface for Radicale</title> <title>Web interface for Radicale</title>
<link href="css/main.css" media="screen" rel="stylesheet" /> <link href="css/main.css" media="screen" rel="stylesheet">
<link href="css/icon.png" type="image/png" rel="shortcut icon" /> <link href="css/icon.png" type="image/png" rel="shortcut icon">
</head>
<body>
<nav> <nav>
<ul> <ul>
<li id="logoutview" style="display: none;"><a href="" name="link">Logout [<span name="user" style="word-wrap:break-word;"></span>]</a></li> <li id="logoutview" style="display: none;"><a href="" name="link">Logout [<span name="user" style="word-wrap:break-word;"></span>]</a></li>
</ul> </ul>
</nav> </nav>
<section id="loginscene" style="display: none;"> <section id="loginscene" style="display: none;">
<h1>Login</h1> <h1>Login</h1>
<form name="form"> <form name="form">
@ -24,10 +24,12 @@
<button type="submit">Next</button> <button type="submit">Next</button>
</form> </form>
</section> </section>
<section id="loadingscene" style="display: none;"> <section id="loadingscene" style="display: none;">
<h1>Loading</h1> <h1>Loading</h1>
Please wait... Please wait...
</section> </section>
<section id="collectionsscene" style="display: none;"> <section id="collectionsscene" style="display: none;">
<h1>Collections</h1> <h1>Collections</h1>
<ul> <ul>
@ -44,6 +46,7 @@
</ul> </ul>
</article> </article>
</section> </section>
<section id="editcollectionscene" style="display: none;"> <section id="editcollectionscene" style="display: none;">
<h1>Edit collection</h1> <h1>Edit collection</h1>
<h2>Edit <span name="title" style="word-wrap:break-word;font-weight:bold;">title</span>:</h2> <h2>Edit <span name="title" style="word-wrap:break-word;font-weight:bold;">title</span>:</h2>
@ -70,6 +73,7 @@
<button type="button" name="cancel">Cancel</button> <button type="button" name="cancel">Cancel</button>
</form> </form>
</section> </section>
<section id="createcollectionscene" style="display: none;"> <section id="createcollectionscene" style="display: none;">
<h1>Create new collection</h1> <h1>Create new collection</h1>
<form> <form>
@ -95,6 +99,7 @@
<button type="button" name="cancel">Cancel</button> <button type="button" name="cancel">Cancel</button>
</form> </form>
</section> </section>
<section id="uploadcollectionscene" style="display: none;"> <section id="uploadcollectionscene" style="display: none;">
<h1>Upload collection</h1> <h1>Upload collection</h1>
<ul> <ul>
@ -109,6 +114,7 @@
<button type="button" name="close">Close</button> <button type="button" name="close">Close</button>
</form> </form>
</section> </section>
<section id="deletecollectionscene" style="display: none;"> <section id="deletecollectionscene" style="display: none;">
<h1>Delete collection</h1> <h1>Delete collection</h1>
<h2>Delete <span name="title" style="word-wrap:break-word;font-weight:bold;">title</span>?</h2> <h2>Delete <span name="title" style="word-wrap:break-word;font-weight:bold;">title</span>?</h2>
@ -118,5 +124,3 @@
<button type="button" name="cancel">No</button> <button type="button" name="cancel">No</button>
</form> </form>
</section> </section>
</body>
</html>