Skip to content

Commit

Permalink
適用したJSPを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sickboy authored and sickboy committed Feb 2, 2013
1 parent 433c50f commit 5238165
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 39 deletions.
4 changes: 2 additions & 2 deletions war/WEB-INF/appengine-generated/datastore-indexes-auto.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!-- Indices written at Thu, 31 Jan 2013 00:17:18 JST -->
<!-- Indices written at Sat, 2 Feb 2013 19:48:26 JST -->

<datastore-indexes>

<!-- Used 5 times in query history -->
<!-- Used 12 times in query history -->
<datastore-index kind="Content" ancestor="false" source="auto">
<property name="identity" direction="asc"/>
<property name="createAt" direction="desc"/>
Expand Down
9 changes: 9 additions & 0 deletions war/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file added war/img/glyphicons-halflings-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added war/img/glyphicons-halflings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions war/js/bootstrap.min.js

Large diffs are not rendered by default.

9 changes: 3 additions & 6 deletions war/login/create.jsp
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<c:import url="../mainFrame.jsp">
<c:param name="title" value="登録"/>
<c:param name="stylesheet">
</c:param>
<c:param name="javascript">
</c:param>
<c:param name="mainMenu">
</c:param>
<c:param name="content">
<div class="span12">
<form method="POST" action="./register">
id:<input type="text" name="identity" value="${identity}">
name:<input type="text" name="name" value="${name}">
Expand All @@ -16,5 +11,7 @@
pass:<input type="password" name="password2">
<input type="submit" value="">
</form>

</div>
</c:param>
</c:import>
9 changes: 3 additions & 6 deletions war/login/forget.jsp
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<c:import url="../mainFrame.jsp">
<c:param name="title" value="パスワード忘れ"/>
<c:param name="stylesheet">
</c:param>
<c:param name="javascript">
</c:param>
<c:param name="mainMenu">
</c:param>
<c:param name="content">

<div class="span12">
<form method="POST" action="./sendForgetMail">
mail:<input type="text" name="mail">
<input type="submit">
</form>
</div>
</c:param>
</c:import>
11 changes: 5 additions & 6 deletions war/login/index.jsp
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<c:import url="../mainFrame.jsp">
<c:param name="title" value="ログイン"/>
<c:param name="stylesheet">
</c:param>
<c:param name="javascript">
</c:param>
<c:param name="mainMenu">
</c:param>
<c:param name="content">

<div class="span12">
<form method="POST" action="./logon">
id:<input type="text" name="identity" value="${identity}">
pass:<input type="password" name="password">
Expand All @@ -17,5 +13,8 @@

<a href="./?type=create">アカウントの新規作成</a>
<a href="./?type=forget">パスワードを忘れたら。。。</a>

</div>

</c:param>
</c:import>
9 changes: 3 additions & 6 deletions war/login/password.jsp
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<c:import url="../mainFrame.jsp">
<c:param name="title" value="パスワード再設定"/>
<c:param name="stylesheet">
</c:param>
<c:param name="javascript">
</c:param>
<c:param name="mainMenu">
</c:param>
<c:param name="content">

<div class="span12">
<form method="POST" action="./setPassword">
pass:<input type="password" name="password">
pass:<input type="password" name="password2">
<input type="hidden" name="registerCode" value="${registerCode}">
<input type="submit">
</form>
</div>
</c:param>
</c:import>
20 changes: 7 additions & 13 deletions war/view/index.jsp
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
<%@page pageEncoding="UTF-8" isELIgnored="false" session="false"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@taglib prefix="f" uri="http://www.slim3.org/functions"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>view Index</title>
</head>
<body>
<p>Hello view Index !!!</p>
</body>
</html>
<c:import url="../mainFrame.jsp">
<c:param name="title" value="登録"/>
<c:param name="content">
<div class="span12">
</div>
</c:param>
</c:import>

0 comments on commit 5238165

Please sign in to comment.