Penyimpanan File Pribadi User Berbasis Web Cloud

1

1.tugasakhir/index.php





Hello, Welcome To Upload & Download!
Selamat datang di website Upload & Download , website ini
adalah tempat Upload Dan Download file pribadi anda tanpa bisa di
download oleh orang lain hanya account anda saja yang bisa
mendownload ketika anda mengupload disini.






Username




Password




Remember me


Don't Have Account? or Lost Password?







$(document).ready(function() {


Universitas Sumatera Utara

2

$('#defaultForm')
.bootstrapValidator({
message: 'This value is not valid',
//live: 'submitted',
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {
username: {
message: 'The username is not valid',
validators: {
notEmpty: {
message: 'The username is required and can\'t be empty'
},

stringLength: {
min: 6,
max: 30,
message: 'The username must be more than 6 and less than 30
characters long'
},
/*remote: {
url: 'remote.php',
message: 'The username is not available'
},*/
regexp: {
regexp: /^[a-zA-Z0-9_\.]+$/,
message: 'The username can only consist of alphabetical, number,
dot and underscore'
}
}
},
password: {
validators: {
notEmpty: {

message: 'The password is required and can\'t be empty'
},
stringLength: {
min: 6,
max: 12,
message: 'The password must be more than 6 and less than 30
characters long'
}
}
}
}
});
});




Universitas Sumatera Utara

3


2.tugasakhir/login.php

3.tugasakhir/header.php



Upload & Download














Universitas Sumatera Utara

4

















Toggle navigation




 









Home
Register
Lost Password







Universitas Sumatera Utara

5

4.tugasakhir/headerindex.php



Upload & Download



























Toggle navigation





 


Universitas Sumatera Utara

6











Home
Register
Lost Password





5.tugasakhir/headerlog.php



Upload & Download















Universitas Sumatera Utara

7











Toggle navigation




 







Upload
My Files






6.tugasakhir/footer.php




© 2016

Design & Code by Pupun




7.tugasakhir/upload/index.php





Universitas Sumatera Utara

11





Username



Full Name



E-Mail



Password



Confirm Password








Terms of Use
By accessing this web site, you are agreeing to be bound by
these web site Terms and Conditions of Use, all applicable laws
and regulations, and agree that you are responsible for compliance
with any applicable local laws. If you do not agree with any of
these terms, you are prohibited from using or accessing this site.
The materials contained in this web site are protected by
applicable copyright and trade mark law.




$(document).ready(function() {
$('#defaultForm')
.bootstrapValidator({
message: 'This value is not valid',
//live: 'submitted',
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
fields: {

Universitas Sumatera Utara

12

username: {
message: 'The username is not valid',
validators: {
notEmpty: {
message: 'The username is required and can\'t be empty'
},
stringLength: {
min: 6,
max: 16,
message: 'The username must be more than 6 and less than 16
characters long'
},
/*remote: {
url: 'remote.php',
message: 'The username is not available'
},*/
regexp: {
regexp: /^[a-zA-Z0-9]+$/,
message: 'The username can only consist of alphabetical, and
number'
}
}
},
fullname: {
message: 'The username is not valid',
validators: {
notEmpty: {
message: 'The fullname is required and can\'t be empty'
},
stringLength: {
min: 2,
max: 50,
message: 'The username must be more than 6 and less than 16
characters long'
},
regexp: {
regexp: /^[a-zA-Z. ]+$/,
message: 'The fullname can only consist of alphabetical and dot'
}
}
},
password: {
validators: {
notEmpty: {
message: 'The password is required and can\'t be empty'
},
stringLength: {
min: 6,
max: 12,
message: 'The password must be more than 6 and less than 30
characters long'
},
identical: {
field: 'password2',
message: 'The password and its confirm are not the same'
}
}
},

Universitas Sumatera Utara

13

password2: {
validators: {
notEmpty: {
message: 'The password is required and can\'t be empty'
},
stringLength: {
min: 6,
max: 12,
message: 'The password must be more than 6 and less than 30
characters long'
},
identical: {
field: 'password',
message: 'The password and its confirm are not the same'
}
}
},
email: {
validators: {
notEmpty: {
message: 'The email address is required and can\'t be empty'
},
emailAddress: {
message: 'The input is not a valid email address'
}
/*remote: {
url: 'remote.php',
message: 'The email is not available'
}*/
}
}
}
});
});



9.tugasakhir/register/index.php