2015-07-09 23:01:43 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Sign in | Hostr • Instant Sharing</title>
|
|
|
|
<meta name="description" content="Share anything instantly. From screenshots to zip files to anything else, for free!">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="shortcut icon" href="/images/favicon.png">
|
|
|
|
<link href='//fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
|
|
|
|
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
|
|
|
|
<link href='/styles/style.css' rel='stylesheet' type='text/css'>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<section class="container header clearfix">
|
|
|
|
<a href="/"><img class="logo img-responsive" src="/images/logo_dark.png" height="21" width="26" alt="Hostr" /></a>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="container user-form clearfix">
|
|
|
|
<p class="lead">Sign in to Hostr.</p>
|
|
|
|
<% if(typeof message !== 'undefined') { %>
|
|
|
|
<div class="alert alert-success alert-signin">
|
|
|
|
<%= message %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
<div class="holder">
|
|
|
|
<form role="form" action="/signin" method="post">
|
2015-08-10 11:44:47 +01:00
|
|
|
<input type="hidden" name="_csrf" value="<%= csrf %>" />
|
2015-07-09 23:01:43 +01:00
|
|
|
<% if(typeof error !== 'undefined') { %>
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<%= error %>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="inputEmail">Email address</label>
|
|
|
|
<input type="email" name="email" class="form-control input-lg" id="inputEmail" placeholder="Enter email" tabindex="1">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="inputEmail">Password — <a href="/forgot" class="forgot">Forgot it?</a></label>
|
|
|
|
<input type="password" name="password" class="form-control input-lg" id="inputPassword" placeholder="Password" tabindex="2">
|
|
|
|
</div>
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox" name="remember" tabindex="3">Remember me on this computer.</a>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-block btn-signup" tabindex="4">Sign in</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<p class="trail">Don't have an account? <a href="/signup">Sign up now</a></p>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
2020-06-14 22:29:04 +01:00
|
|
|
<%- await include('footer') -%>
|
2015-07-09 23:01:43 +01:00
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-66209-2', 'hostr.co');
|
|
|
|
ga('require', 'displayfeatures');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|