-
Notifications
You must be signed in to change notification settings - Fork 0
/
controlpanel.php
28 lines (28 loc) · 1.02 KB
/
controlpanel.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="menu">
<a href="proiect-servlets/home">home</a>
<a href="proiect-servlets/controlpanel">controlpanel</a>
<a href="proiect-servlets/ads">ads</a>
<a href="proiect-servlets/logout">logout</a>
<a href="proiect-servlets/debug">debug</a>
</div>
<br/>
<form class="form ads" action="controlpanel" method="GET">
<br/><input type="text" name="username" value="test" placeholder="username" required />
<input type="password" name="password" value="test" placeholder="password" required />
<input type="submit" name="save" value="Save" />
</form>
<br/>
<br/>
<textarea class="adscode" readonly>
Ads Code.
</textarea>
</body>
</html>