forked from vinayakmp007/Code-fortress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.html
120 lines (101 loc) · 4.22 KB
/
rules.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
<!DOCTYPE html>
<html>
<head>
<title>Conjura'17</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="National Level Techno Cultural Fest of T.K.M College of Engineering,kollam, kerala">
<meta name="keywords" content="Conjura,Techno Cultural Fest,National Level Techno Cultural Fest,TKM,The Great Legacy">
<meta name="google-site-verification" content="6m27UpS8AbU9FEpqJ7tHcmh8Y-EX_kj4epIcMcsEn5w" />
<meta name="HandheldFriendly" content="true">
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/scrollBar.css">
<style type="text/css" media="screen">
.rules li {
margin: 10px 0px;
}
input {
height: 48px;
width: 210px;
background: #38525f;
color: #fff;
border: 2px solid #37474f;
font-size: 16px;
font-weight: 500;
}
input:hover {
background: #37474f;
}
.rules {
padding: 15px 20px 0px 20px;
margin: 0px 70px;
color: #fff;
font-size: 17px;
}
</style>
</head>
<script type="text/javascript">
/*$("#level").click(function(){
//var le =$('.active').attr('round');
// var qno =$('.active').attr('level');
//setTimeout(loadclick,600);
var lev=$("#level").val();
var dat=jQuery.param({ level:lev,OK : "OK",});
$.ajax({
type: "POST",
url: "./test.php",
data: dat,
//contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
cache: false,
beforeSend: function(){
//$("#status").html('Evaluating');
},
success: function(data){
if(qst=="dt") {
//data values
$("#codes").val("");
data=data.trim();
$("#codes").val(data);}
else if(qst=="qs") //question
{$(".codeHere").html(data); }
else if(qst=="df"){ //default values for question
data=data.trim();
$("#codes").val(data);
}
}
}
);
});
*/
</script>
<body style="background-color: #fefefe;height: 100%;">
<script src="./js/login.js" type="text/javascript"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="./js/sign.js" type="text/javascript"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<div style="text-align:center;margin:30px;"><span class="logo" style="color:#9E9E9E;padding: 20px 0px;font-size:65px;"><span style="font-weight:600;">CODE</span> FORTRESS</span></div>
<div class="teal lighten-2" style="width: 900px;margin: auto;padding: 10px;border-radius: 10px;">
<div class="teal lighten-1" style="border-radius: 10px;">
<div style="font-size: 30px;color: #37474f;font-weight: 600;text-decoration: underline;text-align:center;padding-top: 15px;">RULES FOR LEVEL 1</div>
<ol class="rules">
<li>When you are picking the lock, never break it.</li>
<li>While training the dragon, keep the dragon alive till the end.</li>
<li>Try to fly the dragon without banging to the walls or trees on the way</li>
<li>Never drown the dragon in the Aligator pool.</li>
<li>Try to be alive till the end of the game.</li>
<li>Be brave to face the devil.</li>
<li>NEVER USE CHEAT CODES.</li>
</ol>
<div style="text-align:center;padding: 30px;">
<form name="register" method="post" action="./test.php">
<input type="text" class="like" name="level" value="1" style="display:none;"/>
<input type="submit" id="level" value="PLAY GAME" action="./test.php" name="OK">
</form>
</div>
</div>
</div>
</body>
</html>