This repository has been archived by the owner on Feb 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.php
147 lines (124 loc) · 4.37 KB
/
login.php
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
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<title>nfls.io Game center</title>
<head>
<!--Import Google Icon Font-->
<!--<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> -->
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
<body bgcolor="#FFFFFF">
<style type="text/css">
@media screen and (max-width: 640px){
body{
width: 100%;
height: 85%;
background: url(images/bg.svg);
background-color: rgb(255,255,255);
position: absolute;
margin: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
}
@media screen and (min-width: 640px){
body{
width: 640px;
height: 640px;
background: url(images/bg.svg);
background-color: rgb(255,255,255);
overflow: auto;
margin: auto;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 999;
}
}
</style>
<div class="row">
<div class="card">
<div class="row">
<div style="line-height:150%;">
<br>
</div>
<div class="card-image col s2 offset-s1">
<img src="images/nfls.png" style="width:75px;height:75px;">
</div>
<div class="col s10 offset-s1">
<div style="line-height:150%;">
<br>
</div>
<font size="4">Sign in with your nfls.io account</font>
</div>
<div class="col s10 offset-s1">
<div style="line-height:150%;">
<br>
</div>
</div>
<div class="input-field col s10 offset-s1">
<input id="name" type="text" class="validate">
<label for="name">Enter your Email Address or Phone number</label>
</div>
<div class="input-field col s10 offset-s1">
<input id="password" type="password" class="validate">
<label for="password">Password</label>
</div>
<div class="input-field col s10 offset-s1">
<input type="hidden" id="returnurl" value=<?php
if(isset($_GET['redir']))
echo '"'.$_GET['redir'].'"';
else if(isset($_SERVER['HTTP_REFERER']))
echo '"'.$_SERVER['HTTP_REFERER'].'"' ;
else
echo '""';
?>
/>
</div>
<div>
<a class="col s5 offset-s1 grey-text text-lighten-1" href="forget.php">Forgot my password</a>
</div>
<div class="col s10 offset-s1">
<div style="line-height:50%;">
<br>
</div>
</div>
<div>
<a class="col s5 offset-s1 grey-text text-lighten-1" href="register.php">Doesn't have an io account?</a>
</div>
<div class="col s10 offset-s1">
<div style="line-height:200%;">
<br>
</div>
</div>
<div>
<a class="g-recaptcha waves-effect waves-light blue btn col s3 offset-s8" data-sitekey="6LdzGDMUAAAAAMD6AXB16RMgHqywoKrvUFA1BA6-"
data-callback="YourOnSubmitFn" onclick="submitLogin()">Sign in</a>
</div>
<div class="col s10 offset-s1">
<div style="line-height:150%;">
<br>
</div>
</div>
</div>
</div>
</body>
</html>
<script>
$(document).ready(function(){
$('.slider').slider();
});
</script>
<script src="js/login.js"></script>
<script src='https://www.recaptcha.net/recaptcha/api.js'></script>