-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin settings.html
127 lines (67 loc) · 2.8 KB
/
admin settings.html
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<?php
// include adminsettings.php file
include ('admin settings.php'):
?>
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<div style="width:100%">
<div class="box box-default">
<div class="box-header with-border">
<div class="row">
<h2 class="text-center">CONFIGURATION</h2>
</br>
<hr></hr>
<div class="box-header with-border">
<?php if($msg != "") echo "<div style='padding:20px;background-color:#dce8f7;color:black'> $msg</div class='btn btn-success'>" ."</br></br>"; ?>
</br>
<form class="form-horizontal" action="admin settings.php?id=<?php echo $ids ;?>" method="POST" enctype="multipart/form-data" >
<legend> <?php echo $name;?> Settings </legend>
<div class="form-group">
<input type="hidden" name="id" value="<?php echo $ids;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="sname" placeholder="site url" value="<?php echo $bankurl;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="bname" placeholder="Name" value="<?php echo $name;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="wl" placeholder="Withdrawal limit" value="<?php echo $wl;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="rb" placeholder="Registration bonus" value="<?php echo $rb;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="email" placeholder="email" value="<?php echo $emaila;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="phone" placeholder="phone" value="<?php echo $phone;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="title" placeholder="title" value="<?php echo $title;?>" class="form-control">
</div>
<div class="form-group">
<input type="text" name="cy" placeholder="Copyright Year" value="<?php echo $cy;?>" class="form-control">
</div>
<div class="form-group">
<input type="file" name="logo" placeholder="logo" value="<?php echo $logo;?>" class="form-control">
</div>
<button style="" type="submit" class="btn btn-primary" name="set" > <i class="fa fa-send"></i> Add Settings </button>
<button style="" type="submit" class="btn btn-success" name="uset" > <i class="fa fa-send"></i> Update Settings </button>
</form>
</div>
</div>
</div>
</div>
</section>
</div>
<body>
</body>
</html>