-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetpassword.php
59 lines (54 loc) · 2.06 KB
/
setpassword.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/*
* deleteaccount.php
*
* Copyright 2018 Krzysztof Hrybacz <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*
*/
?>
<html>
<head>
<title>Goldwater</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web%3A400%2C300%2C900%7CPT+Sans%3A00&subset=latin" rel="stylesheet">
</head>
<body>
<div class="container">
<img class="right" src="logo/<?php echo $_GET['company']; ?>.png" />
<h1> Goldwater Business </h1>
</div>
<div class="ribbonlogin"><div class="container">
<h2> USER PASSWORD: <?php echo $_GET['login']; ?></h2>
</div></div>
<div class="mainlogin"><div class="container">
<form action="adduser.php" method="POST">
<div id="box"><center><table><tr><td>NEW PASSWORD</td><td><input type="password" name="password" /></td></tr><td></td><td><input type="submit" value="SET PASSWORD" /></td></tr></table></center></div>
<input type="hidden" name="check" value="<?php echo $_GET['code']; ?>" />
<input type="hidden" name="company" value="<?php echo $_GET['company']; ?>" />
<input type="hidden" name="mail" value="<?php echo $_GET['mail']; ?>" />
<input type="hidden" name="login" value="<?php echo $_GET['login']; ?>" />
</form>
</div></div>
<div class="ribbonlogin"><div class="container">
</div></div>
</body>
</body>
</html>