zallery/WebContent/page_login.jsp
2018-08-14 12:14:59 +02:00

44 lines
1.8 KiB
Text
Executable file

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
<t:header>
<link rel="stylesheet" href="css/form-elements.css">
<link rel="stylesheet" href="css/register3.css">
</t:header>
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="form-box">
<div class="form-top">
<div class="form-top-left">
<h3>Login to our site</h3>
<p>Enter username and password to log on:</p>
</div>
<div class="form-top-right">
<i class="fa fa-key"></i>
</div>
</div>
<div class="form-bottom">
<form role="form" action="" method="post" class="login-form">
<div class="form-group">
<label class="sr-only" for="email">Username</label>
<input type="text" name="email" placeholder="Email..."
class="form-username form-control" id="email">
</div>
<div class="form-group">
<label class="sr-only" for="password">Password</label>
<input type="password" name="password" placeholder="Password..."
class="form-password form-control" id="password">
</div>
<button type="submit" class="btn">Sign in!</button>
</form>
</div>
</div>
</div>
</div> <!-- /row -->
</div> <!-- /container -->
<t:footer />