-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
125 lines (125 loc) · 4.91 KB
/
index.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="description" content="Casino Game The Richest Pharaoh">
<meta name="keywords" content="casio, games, game, egypt, pharaoh, rich">
<meta name="author" content="Nikoalay Nikolov">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1, maximum-scale=2">
<title>The Richest Pharaoh</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>
<body>
<header id="header">
<nav>
<ul class="menu">
<li><a href="index.html">Home</a><span class="menu-hover"></span></li>
<li><a href="#">Play Game</a><span class="menu-hover"></span></li>
<li><a href="#">Results</a><span class="menu-hover"></span></li>
<li><a href="#">About</a><span class="menu-hover"></span></li>
</ul>
</nav>
</header>
<div class="mobile-menu" style="display:none"></div>
<div id="container">
<div class="body-bg"></div>
<div class="wrapper">
<div class="mobile-icon" style="display:none"></div>
<div class="left-acide">
<img src="images/pharaoh.png" alt/>
</div>
<div class="middle-section">
<div class="title-logo">
<a href="index.html"><img src="images/logo_game.png" alt="The Richest Pharaoh"/></a>
</div>
<div class="inform">
Pharaohs were richest men of the world.<br/>Become like them!
</div>
</div>
<div class="right-acide">
<div id="step1">
<h3>Join us</h3>
<form action="script/centraladmin.php?action=registration" method="post">
<div class="reg-input">
<input type="email" name="email" placeholder="email" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="text" name="first_name" placeholder="fist name" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="text" name="username" placeholder="username" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="password" name="password" class="reg-input-text" placeholder="password"/>
</div>
<div class="checkbox">
<input type="checkbox" id="terms" name="terms">
<label for="terms"></label>
</div>
<div class="terms-text">
By checking this box I agree to, <br/><a href="#">Terms & Conditions</a> of the site.
</div>
<br/>
<div class="img-loader" style="display:none"></div>
<input type="submit" value="Register" />
</form>
</div>
<div id="step2" style="display: none">
<h3>You’re ready to play!</h3>
<p>In order to play with real money, you will need to provide more information.
You can do so now if you wish, or skip and do it at a later time
</p>
<span class="button" id="continue_btn">Continue Registration</span>
<a href="http://www.casino.com" class="button" id="skip_btn">Skip</a>
</div>
<div id="step3" style="display: none">
<form action="script/centraladmin.php?action=registration2" method="post">
<div class="reg-input">
<input type="email" name="address1" placeholder="Address 1" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="text" name="address2" placeholder="Address 2" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="text" name="postal_code" placeholder="Postal Code" class="reg-input-text" />
</div>
<div class="reg-input">
<input type="password" name="phone_number" placeholder="Phone Number" class="reg-input-text"/>
</div>
<div class="terms-text">
Do you have a bonus code? Click <span class="show-bonus-code" onclick="$('input[name=\'bonus_code\']').fadeIn(100)">here</span>.
</div>
<br />
<div class="reg-input">
<input type="password" name="bonus_code" placeholder="Bonus Code" class="reg-input-text" style="display:none"/>
</div>
<div class="img-loader" style="display:none"></div>
<input type="submit" value="Register" />
</form>
</div>
<div id="step4" style="display: none">
<h3>Thank you</h3>
<p>You can now play with real money. Have fun, and good luck!</p>
<a href="http://www.casino.com/casino-games/" class="button" id="play_btn">Play Now</a>
<a href="http://www.casino.com/promotions/" class="button" id="promotions_btn">Promotions</a>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="copy-right">
<span>2015 - 2016 © Copyright. All rights reserved.</span>
</div>
<div class="footer-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Play Game</a></li>
<li><a href="#">Results</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>