-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuploadFile.html
More file actions
43 lines (41 loc) · 984 Bytes
/
uploadFile.html
File metadata and controls
43 lines (41 loc) · 984 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LONI PIPELINE</title>
<link href="stylesheets/master.css" rel="stylesheet" type="text/css">
<style type="text/css">
body {
background-color: #e4e4e4;
}
#intro {
margin: 0 auto;
background-image:url(images/loni-pipeline-logo.gif);
background-repeat:no-repeat;
background-position:left;
padding-left: 300px;
width: 200px;
height: 300px;
vertical-align:bottom;
}
#filenameLabel{
font-family:"Trebuchet MS", Helvetica, sans-serif;
font-size: 20px;
}
</style>
</head>
<body>
<div id="intro">
<p> </p>
<p> </p>
<p> </p>
<form action="upload_file.php" method="post"enctype="multipart/form-data" class ="uploadform">
<label for="file" id= "filenameLabel">Filename :</label>
<br /><br />
<input type="file" name="file" id="file" />
<br /><br />
<input type="submit" name="submit" value="Submit" />
</form>
</div>
</body>
</html>