-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest_submitted.html
executable file
·89 lines (70 loc) · 7.05 KB
/
request_submitted.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
Copyright 2015 Hassan Mahmood, The University of Michigan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Request Submitted</title>
<style>
#itsBanner {
position: absolute;
top: 0px;
left: 0px;
padding: 20px;
width: 100%;
background: #00274c;
white-space: nowrap;
}
html * {
font-family: Arial !important;
}
h2 {
position: relative;
top: 75px;
}
#text {
position: relative;
top: 75px;
}
#whitespace {
position: relative;
top: 75px;
color: white;
}
</style>
</head>
<body>
<div id="itsBanner">
<a href="index.html">
<img src="../site_banner.png" alt="AFS Migration Tool"/>
</a>
</div>
<h2>Your Request has been Submitted</h2>
<div id="text">
<p>You will recieve an email when all of your files have been uploaded. Note that this may take a few hours, depending on current server load and the number of files you have. Please do not modify any of your files while the transfer is taking place. Feel free to close this page.</p>
</div>
<br>
<div id="whitespace">
<p> </p>
</div>
<br>
<div id="whitespace">
<p> </p>
</div>
<br>
<div id="whitespace">
<p> </p>
</div>
<br>
</body>
</html>