forked from xsuperbug/g0yg0y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csrf1.php
52 lines (41 loc) · 1.09 KB
/
csrf1.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
<?php
if(isset($_POST['submit'])) {
$ok="<div class='alert alert-success' role='alert'> The operation was completed successfully</div>";
}
include 'ust.php';
?>
<?php echo (!empty($ok) ? $ok : ""); ?>
<!-- 1 -->
<div id="page-content-wrapper">
<!-- 2 -->
<div class="container-fluid">
<!-- 3 -->
<div class="row">
<!-- 4 -->
<div class="col-lg-6">
<h1>CSRF</h1>
<div class="well">
<br>
<h4>Change My Password</h5>
<hr>
<form action="csrf1.php" method="POST">
<div class="form-group">
<label for="exampleInputEmail1">New Password</label>
<input name="baslik" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<div class="form-group">
<label for="exampleInputEmail1">Verify New Password</label>
<input name="baslik" class="form-control" id="exampleInputEmail1" placeholder="">
</div>
<button type="submit" name="submit" class="btn btn-default">Submit</button>
</form>
</div>
<br>
<a href="#">Click to move to the next stage</a>
<!-- /4 -->
</div>
<!-- /3 -->
</div>
<!-- /2 -->
</div>
<?php include 'alt.php'; ?>