summaryrefslogtreecommitdiffstats
path: root/WebContent/LoginForm.jsp
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-10-25 18:24:33 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-10-25 18:24:33 +0100
commite48415bce9429daf7bd84d546c4b9d013f11f576 (patch)
tree29597e5e8dbbc02f6585109a18a73fa2a38f7b84 /WebContent/LoginForm.jsp
parent37e0375e9cfefed8f2aab9d2466df0d4ff20a434 (diff)
downloadFIT-e48415bce9429daf7bd84d546c4b9d013f11f576.tar.gz
FIT-e48415bce9429daf7bd84d546c4b9d013f11f576.zip
Implement basic login form
Diffstat (limited to 'WebContent/LoginForm.jsp')
-rw-r--r--WebContent/LoginForm.jsp16
1 files changed, 16 insertions, 0 deletions
diff --git a/WebContent/LoginForm.jsp b/WebContent/LoginForm.jsp
new file mode 100644
index 0000000..ec3f7a9
--- /dev/null
+++ b/WebContent/LoginForm.jsp
@@ -0,0 +1,16 @@
+<%@ page language="java" contentType="text/html; charset=UTF-8"
+ pageEncoding="UTF-8"%>
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="utf-8" />
+<title>Login</title>
+</head>
+<body>
+ <form action="LoginServlet" method="post">
+ <label for="username">Username:</label><input type="text" name="username" id="username"><br>
+ <label for="password">Password:</label><input type="text" name="password" id="password"><br>
+ <input type="submit"><input type="reset">
+ </form>
+</body>
+</html> \ No newline at end of file