IPost/views/index.html
Mystikfluu 69790c32d5 made the index webpage into two parts
added register/login links when not logged in
when logged in, chat and profile links are shown
2022-05-26 14:37:13 +02:00

46 lines
1.3 KiB
HTML

<head>
<link rel="stylesheet" href="/css/logon.css">
<script src="/js/index.js" charset="utf-8"></script>
</head>
<body>
<header>
<h1>IPost</h1>
</header>
<main>
<form id="login_form" class="form_class" action="login" method="post">
<div class="info_div">
IPost is a revolutionary chatting website <br>
featuring an innovative design <br>
<br>
<br>
<div id="NoAccount" style="display:none;">
<span>Do you not have an account? <a href="register">Register now!</a></span>
<br>
<br>
<span>Do you already have an account? <a href="login">Login now!</a></span>
<br>
<br>
</div>
<div id="HasAccount" style="display:none;">
<span>Here to chat? <a href="posts">Chat now!</a></span>
<br>
<br>
<span>Just want a quick look at your profile? <a href="user">your profile</a></span>
<br>
<br>
</div>
<span>This is open source, find more about this project <a href="https://github.com/002Hub/IPost">on github</a></span>
<br>
<br>
</div>
</form>
</main>
<footer>
</footer>
</body>