-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
41 lines (37 loc) · 1.75 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>UpLoader: Help</title>
<link rel="stylesheet" href="./resources/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<button class="btn m-1 btn-outline-secondary" onclick="window.history.back()">Back</button>
<div class="container-md mt-5 xxw-50 ">
<div class="card">
<div class="card-header bg-primary text-white text-center"><b>Helpful information</b></div>
<div class="card-body">
<div class="card-body alert alert-success">
<ul>
<li>All passwords are hashed and the hash is stored, then the password is deleted</li>
<li>There is no way to recover your password if you forget it.
Please email me.<br>
<i>I can move your files to a temporary location, delete your username, and then you can create your username again,
and then I can move your files back.</i></li>
<li>If you upload a file with the same name as an existing one, it will overwrite the existing one.<br>
Comments and marks, if any, will also be lost.</li>
</ul>
</div>
<div class="card-body alert alert-primary">
You don't have to create folders, but you should for each different java package. Make the folder name correspond to the package name.
</div>
<div class="card-body alert alert-primary">
Remember to upload the .java file NOT the .class file.
</div>
</div>
</div>
<p class="text-right"><i>Created by Michael Harwood, concept by Fei Ju</i></p>
</body>
</html>