1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00
wallabag/tpl/login.html

34 lines
1.4 KiB
HTML
Raw Normal View History

2013-04-19 05:41:12 -04:00
{include="head"}
2013-04-21 06:17:56 -04:00
<body class="light-style">
<header>
2013-04-23 02:07:47 -04:00
<h1><a href="index.php"><img src="./img/logo.png" alt="logo poche" /></a>poche</h1>
2013-04-21 06:17:56 -04:00
</header>
<div id="main">
<form method="post" action="?login" name="loginform">
<fieldset class="w500p center">
<h2 class="mbs txtcenter">login to your poche</h2>
<div class="row">
<label class="col w150p" for="login">Login</label>
<input class="col" type="text" id="login" name="login" placeholder="Login" tabindex="1" autofocus />
</div>
<div class="row">
2013-05-31 16:55:52 -04:00
<label class="col w150p" for="password">Password</label>
<input class="col" type="password" id="password" name="password" placeholder="Password" tabindex="2">
</div>
<div class="row">
<label class="col w150p">Stay signed in</label>
<div class="col">
<input type="checkbox" name="longlastingsession" tabindex="3">
<small class="inbl">(Do not check on public computers)</small>
</div>
</div>
<div class="row mts txtcenter">
<button class="bouton" type="submit" tabindex="4">Sign in</button>
</div>
2013-04-18 09:47:06 -04:00
</fieldset>
<input type="hidden" name="returnurl" value="<?php echo htmlspecialchars($referer);?>">
<input type="hidden" name="token" value="<?php echo Session::getToken(); ?>">
2013-04-19 05:41:12 -04:00
</form>
2013-04-20 04:27:37 -04:00
{include="footer"}