-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
108 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> | ||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<title>Raptoz Login Form</title> | ||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/overcast/jquery-ui.css"/>"> | ||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/bootstrap.css"/>"/> | ||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/raptoz-base.css"/>"/> | ||
<link rel="stylesheet" type="text/css" href="<c:url value="/css/raptoz-login-form.css"/>"/> | ||
</head> | ||
<body> | ||
<div class="container" id="resultContainer"> | ||
<form class="well form-horizontal" id="loginForm" action="<c:url value="/user/login"/>" method="post"> | ||
<fieldset> | ||
<h2>Raptoz Sign in</h2> | ||
<input type="hidden" name="redirectUrl" value="${redirectUrl}"> | ||
<div class="control-group ${not empty emailIncorrectMessage ? "error" : ""}"> | ||
<label class="control-label" for="inputEmail">Email</label> | ||
<div class="controls"> | ||
<input type="text" name="email" placeholder="Email address" value="${email}"> | ||
<span class="help-inline">${emailIncorrectMessage}</span> | ||
</div> | ||
</div> | ||
<div class="control-group ${not empty passwordIncorrectMessage ? "error" : ""}"> | ||
<label class="control-label" for="inputPassword">Password</label> | ||
<div class="controls"> | ||
<input type="password" name="password" placeholder="Password" value=""> | ||
<span class="help-inline">${passwordIncorrectMessage}</span> | ||
</div> | ||
</div> | ||
<div class="control-group"> | ||
<div class="controls"> | ||
<input type="submit" class="btn btn-primary" value="Submit"> | ||
</div> | ||
</div> | ||
</fieldset> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@CHARSET "UTF-8"; | ||
|
||
body { | ||
padding-top: 40px; | ||
padding-bottom: 40px; | ||
background-color: #f5f5f5; | ||
} | ||
|
||
h2 { | ||
text-align: center; | ||
} | ||
|
||
#loginForm { | ||
max-width: 500px; | ||
margin: 0 auto; | ||
margin-top: 10%; | ||
background-color: #fff; | ||
} | ||
|
||
#loginForm input { | ||
height: auto; | ||
font-size: 16px; | ||
padding: 7px 9px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters