-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGroup.html
More file actions
31 lines (30 loc) · 793 Bytes
/
Group.html
File metadata and controls
31 lines (30 loc) · 793 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert a new group</title>
<script language="javascript">
function alpha(e) {
var k;
document.all ? k = e.keyCode : k = e.which;
return ((k > 64 && k < 91) || (k > 96 && k < 123) || k == 8 || (k>191 && k<256) || k == 138 || k == 154 || k == 142 || k == 158|| k == 39);
}
</script>
</head>
<body>
<form id="form2" name="form2" method="post" action="/getGroup">
<p>
<label><label>Insert the Group.<br />
</p>
<p>
</label>Name
<input type="text" name="name" id="name" placeholder="Please Input Name of the Group" onkeypress="return alpha(event);" required />
</label>
</p>
<p>
<label>
<input type="submit" name="insert" id="insert" value="Insert"/>
</label>
</p>
</body>
</html>