-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmywallet.php
More file actions
43 lines (37 loc) · 851 Bytes
/
Copy pathmywallet.php
File metadata and controls
43 lines (37 loc) · 851 Bytes
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
<DOCTYPE html>
<html>
<head>
<title>add cash</title>
<style>
body{
background-color: #81ecec;
}
.container{
background-color: whitesmoke;
box-shadow: 1px 1px 2px 1px grey;
padding: 50px 28px 50px 38px;
width: 30%;
height: 55%;
margin-left: 35%;
}
.txt{
width: 40%;
height: 5%;
border: 1px solid brown;
border-radius: 05px;
padding: 20px 15px 20px 15px;
margin: 10px 0px 15px 0px;
}
</style>
</head>
<body>
<center><h2>add money</h2></center>
<div class="container">
<form id="wagers" method="POST" action="waltest.php">
<label> enter amount</label><br>
<input type="number" class="txt" name="number" placeholder="enter amount"><br>
</select><br><br>
<input type="submit" name="submit" class="txt" value="submit" id="button"></br>
</form>
</div>
</body>