-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudent.jsp
38 lines (30 loc) · 1021 Bytes
/
student.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
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>portal</title>
</head>
<body>
<!--<s:form action="addPlayer">
<s:textfield name="name" lable="Player's Name " />
<s:textfield name="email" lable="Email "/>
<s:textfield name="password" lable="Password "/>
<s:textfield name="phoneno" lable="Phone No "/>
<s:submit />
</s:form>
-->
<form action="addOfficer" validate="true" >
Name <input type="text" name="name"></br>
Email <input type="text" name="email"></br>
Password <input type="password" name="password"></br>
Phone No <input type="text" name="phoneno"> </br>
<input type="submit" value="submit" >
</form>
</br>
<a href="login">login</a>
<a href="register1">register-many-to-one</a>
</body>
</html>