forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
189 lines (171 loc) · 6.46 KB
/
index.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?php
/**
* ProjectSend (previously cFTP) is a free, clients-oriented, private file
* sharing web application.
* Clients are created and assigned a username and a password. Then you can
* upload as much files as you want under each account, and optionally add
* a name and description to them.
*
* ProjectSend is hosted on Google Code.
* Feel free to participate!
*
* @link http://code.google.com/p/clients-oriented-ftp/
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL version 2
* @package ProjectSend
*
*/
$allowed_levels = array(9,8,7,0);
require_once('sys.includes.php');
$page_title = __('Log in','cftp_admin');
$body_class = array('login');
include('header-unlogged.php');
$login_button_text = __('Log in','cftp_admin');
/**
* Google Sign-in
*/
if ( GOOGLE_SIGNIN_ENABLED == '1' ) {
$googleClient = new Google_Client();
$googleClient->setApplicationName(THIS_INSTALL_SET_TITLE);
$googleClient->setClientSecret(GOOGLE_CLIENT_SECRET);
$googleClient->setClientId(GOOGLE_CLIENT_ID);
$googleClient->setAccessType('online');
$googleClient->setApprovalPrompt('auto');
$googleClient->setRedirectUri(BASE_URI . 'sociallogin/google/callback.php');
$googleClient->setScopes(array('profile','email'));
$auth_url = $googleClient->createAuthUrl();
}
if ( isset($_SESSION['errorstate'] ) ) {
$errorstate = $_SESSION['errorstate'];
unset($_SESSION['errorstate']);
}
?>
<div class="col-xs-12 col-sm-12 col-lg-4 col-lg-offset-4">
<?php echo generate_branding_layout(); ?>
<div class="white-box">
<div class="white-box-interior">
<div class="ajax_response">
<?php
/** Coming from an external form */
if ( isset( $_GET['error'] ) ) {
switch ( $_GET['error'] ) {
case 1:
echo system_message('error',__("The supplied credentials are not valid.",'cftp_admin'),'login_error');
break;
case 'timeout':
echo system_message('error',__("Session timed out. Please log in again.",'cftp_admin'),'login_error');
break;
}
}
?>
</div>
<script type="text/javascript">
$(document).ready(function() {
$("#login_form").submit(function(e) {
e.preventDefault();
e.stopImmediatePropagation();
$('.ajax_response').html();
clean_form(this);
is_complete(this.username,'<?php _e('Username was not completed','cftp_admin'); ?>');
is_complete(this.password,'<?php _e('Password was not completed','cftp_admin'); ?>');
// show the errors or continue if everything is ok
if (show_form_errors() == false) {
return false;
}
else {
var url = $(this).attr('action');
$('.ajax_response').html('');
$('#submit').html('<i class="fa fa-cog fa-spin fa-fw"></i><span class="sr-only"></span> <?php _e('Logging in','cftp_admin'); ?>...');
$.ajax({
cache: false,
type: "get",
url: url,
data: $(this).serialize(), // serializes the form's elements.
success: function(response)
{
var json = jQuery.parseJSON(response);
if ( json.status == 'success' ) {
//$('.ajax_response').html(json.message);
$('#submit').html('<i class="fa fa-check"></i><span class="sr-only"></span> <?php _e('Redirecting','cftp_admin'); ?>...');
$('#submit').removeClass('btn-primary').addClass('btn-success');
setTimeout('window.location.href = "'+json.location+'"', 1000);
}
else {
$('.ajax_response').html(json.message);
$('#submit').html('<?php echo $login_button_text; ?>');
}
}
});
return false;
}
});
});
</script>
<form action="process.php" name="login_admin" role="form" id="login_form">
<input type="hidden" name="do" value="login">
<fieldset>
<div class="form-group">
<label for="username"><?php _e('Username','cftp_admin'); ?> / <?php _e('E-mail','cftp_admin'); ?></label>
<input type="text" name="username" id="username" value="<?php if (isset($sysuser_username)) { echo htmlspecialchars($sysuser_username); } ?>" class="form-control" autofocus />
</div>
<div class="form-group">
<label for="password"><?php _e('Password','cftp_admin'); ?></label>
<input type="password" name="password" id="password" class="form-control" />
</div>
<div class="form-group">
<label for="language"><?php _e('Language','cftp_admin'); ?></label>
<select name="language" id="language" class="form-control">
<?php
// scan for language files
$available_langs = get_available_languages();
foreach ($available_langs as $filename => $lang_name) {
?>
<option value="<?php echo $filename;?>" <?php echo ( LOADED_LANG == $filename ) ? 'selected' : ''; ?>>
<?php
echo $lang_name;
if ( $filename == SITE_LANG ) {
echo ' [' . __('default','cftp_admin') . ']';
}
?>
</option>
<?php
}
?>
</select>
</div>
<?php
/*
<label for="login_form_remember">
<input type="checkbox" name="login_form_remember" id="login_form_remember" value="on" />
<?php _e('Remember me','cftp_admin'); ?>
</label>
*/?>
<div class="inside_form_buttons">
<button type="submit" id="submit" class="btn btn-wide btn-primary"><?php echo $login_button_text; ?></button>
</div>
<div class="social-login">
<?php if(GOOGLE_SIGNIN_ENABLED == '1'): ?>
<a href="<?php echo $auth_url; ?>" name="Sign in with Google" class="google-login"><img src="<?php echo BASE_URI; ?>img/google/btn_google_signin_light_normal_web.png" alt="Google Signin" /></a>
<?php endif; ?>
</div>
</fieldset>
</form>
<div class="login_form_links">
<p id="reset_pass_link"><?php _e("Forgot your password?",'cftp_admin'); ?> <a href="<?php echo BASE_URI; ?>reset-password.php"><?php _e('Set up a new one.','cftp_admin'); ?></a></p>
<?php
if (CLIENTS_CAN_REGISTER == '1') {
?>
<p id="register_link"><?php _e("Don't have an account yet?",'cftp_admin'); ?> <a href="<?php echo BASE_URI; ?>register.php"><?php _e('Register as a new client.','cftp_admin'); ?></a></p>
<?php
} else {
?>
<p><?php _e("This server does not allow self registrations.",'cftp_admin'); ?></p>
<p><?php _e("If you need an account, please contact a server administrator.",'cftp_admin'); ?></p>
<?php
}
?>
</div>
</div>
</div>
</div>
<?php
include('footer.php');