1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-07 18:30:54 +00:00

Added html-tags

HTML5 needs <head> and <body> to valid. Also <html> has to be closed.
This commit is contained in:
Henning 2023-06-06 13:21:05 +02:00
parent d7ce2f0b98
commit 3e95c0ab0e

View file

@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -11,7 +12,9 @@
<style>
.hidden {display:none;}
</style>
</head>
<body>
<nav>
<ul>
<li id="logoutview" class="hidden"><a href="" data-name="link">Logout [<span data-name="user" style="word-wrap:break-word;"></span>]</a></li>
@ -128,3 +131,6 @@
<button type="button" data-name="cancel">No</button>
</form>
</section>
</body>
</html>