37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>LazyShare</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<link rel="stylesheet" href="../resources/settings-notes/css.css" type="text/css">
|
||
|
<script>
|
||
|
var toggle = function() {
|
||
|
var mydiv2 = document.getElementById('frame');
|
||
|
if(mydiv2.style.height == '525px')
|
||
|
mydiv2.style.height = '775px';
|
||
|
else
|
||
|
mydiv2.style.height = '525px';
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="bg"><img src="../resources/backgrounds/creek.gif"/></div>
|
||
|
|
||
|
<a href="../">
|
||
|
<img src="../resources/icons/left.png" class="backbutton" alt="Can Not Display Picture" />
|
||
|
</a><br>
|
||
|
<div class="ifrmbutton2">
|
||
|
<button onclick="toggle();">Toggle Iframe Height</button>
|
||
|
</div>
|
||
|
<div class="header">
|
||
|
<form action="../resources/settings-notes/upload.php" method="post" enctype="multipart/form-data">
|
||
|
Select a file to upload:
|
||
|
<input type="file" name="fileToUpload" id="fileToUpload"><br>
|
||
|
<input type="submit" value="Upload File" name="submit">
|
||
|
</form>
|
||
|
</div>
|
||
|
<i><iframe id="frame" name="frame" class="iframer"></iframe></i>
|
||
|
</body>
|
||
|
</html>
|