-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgender.php
More file actions
135 lines (106 loc) · 2.65 KB
/
Copy pathgender.php
File metadata and controls
135 lines (106 loc) · 2.65 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
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
128
129
130
131
132
133
134
135
<?php include("loanlinks.php"); ?>
<div id="section3">
<div style="text-align: center; padding-top: 200px;">We need to know just a litle more<br>about you.</div><br>
<div align="center" style="font-size: 20px;">Yfhgf ngfdn sgfn gnnsnf </div>
</div>
<div id="section4">
<style type="text/css">
#myProgress {
width: 100%;
background-color: #ddd;
}
#myBar {
width: 1%;
height: 10px;
background-color: royalblue;
border-radius: 10px;
padding-bottom: 10px;
}
#text{
text-align: center;
font-size: 30px;
padding-top: 200px;
}
.far{
font-size: 100px !important;
color: blue;
}
.row{
padding-top: 10%;
}
form{
background:transparent;
padding-top: 50px;
height: 400px;
}
body{
background-color: white;
font-size: 50px;
}
.form-control{
width: 50% !important;
height: 60px;
border:1px solid white !important;
background-color: #f7f0f0;
}
</style>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<form method="post">
<div align="center" style="font-size: 25px; padding-bottom: 20px;"><b>What's your home address?</b></div>
<div style="padding-bottom: 40px;">
<div align="center"><input type="text" name="phone" class="form-control" placeholder="Country" style="width: 50%; height: 50px; background-color: #f7f0f0;" required></div>
<div align="center"><input type="text" name="phone" class="form-control" placeholder="State city" style="width: 50%; height: 50px; background-color: #f7f0f0; word-spacing: 150px;" required></div>
</div>
<div align="center"><input type="submit" name="create" value="Create account" class="btn btn-primary" style="width: 140px; height: 50px; font-weight: bolder;"></div><br>
</div>
</form>
</div>
<div class="col-sm-2"></div>
</div>
<div id="myProgress" class="fixed-bottom">
<div id="myBar"></div>
<div style="background-color: white; word-spacing: 20px; color: lightgray; font-size: 15px;" align="center">
<a href="#">Help</a>
|
<a href="#">Terms</a>
|
<a href="#">Policy</a>
</div>
</div>
<?php
if (isset($_POST['create'])) {
}
?>
</div>
<script >
$('#section4').hide();
function change(){
$('#section3').fadeOut();
}
setInterval(change, 3000);
function change2(){
$('#section4').fadeIn();
}
setInterval(change2, 4000);
var i = 0;
function move() {
if (i == 0) {
i = 1;
var elem = document.getElementById("myBar");
var width = 50;
var id = setInterval(frame, 20);
function frame() {
if (width >= 75) {
clearInterval(id);
i = 0;
} else {
width++;
elem.style.width = width + "%";
}
}
}
}
move();
</script>