-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwithdraw.html
More file actions
77 lines (72 loc) · 1.87 KB
/
withdraw.html
File metadata and controls
77 lines (72 loc) · 1.87 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="files/css/reset.css">
<link href="files/css/font-awesome.min.css" rel="stylesheet">
<link href="files/css/bootstrap.css" rel="stylesheet" />
<link rel="stylesheet" href="files/animate/animate.css" />
<link rel="stylesheet" href="files/animate/set.css" />
<title>Withdraw</title>
</head>
<style>
#backs{
background-image:url("images/withdrawl.jpg");
background-size: cover;
}
#mar{
color:yellow;
}
input[type=text] {
width: 40%;
height:10%
padding: 10px 18px;
margin: 8px 0;
box-sizing: border-box;
border: 3px solid #ccc;
transition: 0.5s;
outline: none;
}
input[type=password] {
width: 40%;
height:10%
padding: 10px 18px;
margin: 8px 0;
box-sizing: border-box;
border: 3px solid #ccc;
transition: 0.5s;
outline: none;
}
input[type=text]:focus {
border: 3px solid #555;
}
#with_form{
font-size: 20px;
margin-top:440px;
margin-left:400px;
}
#with_form b{
color: yellow;
}
#enter{
font-size: 18px;
color:yellow;
margin-left: 1163px;
text-decoration: none;
border: none;
background-color: transparent;
}
</style>
<body id="backs">
<div id="mar"><marquee>Be careful while typing your details to avoid any incovinience.</marquee></div>
<div id="with_form">
<b>NAME:</b> <input type="text" name="name" placeholder="Name"><br>
<b>AMOUNT:</b> <input type="text" name="amount" placeholder="Amount"><br>
<b>ATM PIN:</b> <input type="password" name="pin" placeholder="pin"><br>
</div>
<div id="">
<button id="enter" name="enter" type="submit" value="Enter">ENTER</button>
</div>
</body>
</html>