-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.php
28 lines (26 loc) · 1.1 KB
/
reset.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
<html>
<head>
<title>Reset your password</title>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
</head>
<body class="body-style-9">
<h1>Reset Your Password</h1>
<form name="Reset" action="reset_questions.php" method="post" class="form-style-9">
<ul>
<li>
<div class="field-style field-full align-none">Company Number:</div>
<input name="CN" type="text" required class="field-style field-full align-none" placeholder="10000001" />
</li>
<li>
<div class="field-style field-full align-none">Domain User Name:</div>
<input name="User" type="text" required class="field-style field-full align-none" placeholder="petragroup\user"/>
</li>
<li>
<input type="submit" value="SUBMIT" class="field-style field-split align-left" />
<input type="button" value="CANCEL" class="field-style field-split align-right" onclick="location.href = 'index.php';" />
</li>
</ul>
</form>
</body>
</html>