-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.jsp
56 lines (53 loc) · 2.28 KB
/
index.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%>
<%--
Document : index
Created on : Jan 29, 2015, 3:26:16 PM
Author : programmercore
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="main.css"/>
<link rel="stylesheet" href="reset.css"/>
<title>Login || Register</title>
</head>
<body>
<div class="container">
<div class="contents">
<div id="navigation">
<ul id="top_navigation">
<li><a href="">Anime</a></li>
<li><a href="">TV Serials</a></li>
<li><a class="reg_login" href="login.jsp">Login</a></li>
</ul>
</div>
<div class="register_field">
<div class="reg_form">
<h2>Sign Up</h2>
<p class="error">
<c:if test="${not empty param.errMsg}">
<c:out value="${param.errMsg}" />
</c:if>
</p>
<form class="form" method="get" action="registration.jsp">
<input name="user_name" type="text" placeholder="First Name"></input>
<input name="user_mail" type="email" placeholder="Email"></input>
<input name="user_pass" type="password" placeholder="Password"></input>
<input type="submit" value="Sign up"></input>
</form>
</div>
</div>
</div>
<div id="footer"><div class="footer">
<a target = "_blank" href="https://www.twitter.com/asjadsohail" >Twitter</a>
<a target = "_blank" href="#" >Facebook</a>
<a target = "_blank" href="/terms" >Terms</a>
<a target = "_blank" href="/terms" >Privacy Policy</a>
<a target = "_top" href="mailto:[email protected]" >Contact</a>
</div></div>
</div>
</body>
</html>