forked from tusharchaudhari30/Student-Certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsp
62 lines (56 loc) · 2.05 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
57
58
59
60
61
62
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%><!DOCTYPE html>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="images/favicon.ico" type="image/ico" />
<title>EzDoc|</title>
<!-- Bootstrap -->
<link
href="<c:url value="/resources/bootstrap/dist/css/bootstrap.min.css"/>"
rel="stylesheet">
<!-- Font Awesome -->
<link href="<c:url value="/resources/font/css/font-awesome.min.css"/>"
rel="stylesheet">
<!-- Custom Theme Style -->
<link href="<c:url value="/resources/build/css/custom.css"/>"
rel="stylesheet">
</head>
<body class="login">
<div>
<a class="hiddenanchor" id="signup"></a>
<a class="hiddenanchor" id="signin"></a>
<div class="login_wrapper">
<div class="animate form login_form">
<section class="login_content">
<form action="/StudentCampus/loginuser" method="post">
<h1>Login</h1>
<div>
<input type="text" class="form-control" placeholder="UserID" required="required" name="id"/>
</div>
<div>
<input type="password" class="form-control" placeholder="Password" required="required" name ="pwd"/>
</div>
<div>
<input type="submit" value="Login" class="btn btn-primary">
</div>
<div class="clearfix"></div>
<div class="separator">
<div>
<h1>EZDoc</h1>
</div>
</div>
</form>
</section>
</div>
</div>
</div>
</body>
</html>