65 lines
2.4 KiB
PHP
Executable File
65 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
require "header.php";
|
|
|
|
includeHTMLHeader();
|
|
|
|
$_SESSION['currentalbum'] = 0;
|
|
|
|
?>
|
|
<!-- insert the page content here -->
|
|
<?php
|
|
if ( $currentuser->isLoggedIn() ) {
|
|
echo "<div class='textlink' id='btn_refresh'>REFRESH</div>\n";
|
|
}
|
|
?>
|
|
<div class="albumdetails hidden" id="albumdetails">
|
|
<div><span class="albuminfo_label textlink">Album Title:</span> <span class="albuminfo" id="albumtitle"></span></div>
|
|
<div><span class="albuminfo_label textlink">Album Manufacturer:</span> <span class="albuminfo" id="albummanufacturer"></span></div>
|
|
<div><span class="albuminfo_label textlink">Album Scale:</span> <span class="albuminfo" id="albumscale"></span></div>
|
|
<div class="albuminfo_label textlink">Album Description:</div>
|
|
<div class="albuminfo spacebelow_small" id="albumdescription"></div>
|
|
<div id="albumdescription"></div>
|
|
</div>
|
|
<div id="albumcontents">
|
|
</div>
|
|
<!-- jQueryUI Dialog for editing album info -->
|
|
<div id="edit_album" title="Edit Album Properties" class="hidden">
|
|
<div>
|
|
<label for="edit_album_title"><b>Title</b></label>
|
|
<input placeholder="Enter Title" name="edit_album_title" id="edit_album_title" size="40" required>
|
|
</div>
|
|
<p />
|
|
<div>
|
|
<label for="edit_album_manufacturer"><b>Manufacturer</b></label>
|
|
<input placeholder="Enter Manufacturer" name="edit_album_manufacturer" id="edit_album_manufacturer" size="40" required>
|
|
</div>
|
|
<p />
|
|
<div>
|
|
<label for="edit_album_scale"><b>Scale</b></label>
|
|
<input placeholder="Enter Scale" name="edit_album_scale" id="edit_album_scale" size="40" required>
|
|
</div>
|
|
<p />
|
|
<div>
|
|
<label for="edit_album_description"><b>Description</b></label>
|
|
<textarea placeholder="Enter Description" name="edit_album_description" id="edit_album_description" rows="5" cols="40"></textarea>
|
|
</div>
|
|
</div>
|
|
<!-- jQueryUI Dialog for editing image info -->
|
|
<div id="edit_image" title="Edit Image Properties" class="hidden">
|
|
<div>
|
|
<label for="edit_image_title"><b>Title</b></label>
|
|
<input placeholder="Enter Title" name="edit_image_title" id="edit_image_title" size="40" required>
|
|
</div>
|
|
<p />
|
|
<div>
|
|
<label for="edit_image_description"><b>Description</b></label>
|
|
<textarea placeholder="Enter Description" name="edit_image_description" id="edit_image_description" rows="5" cols="40"></textarea>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
|
|
includeHTMLFooter("scalemodels.js");
|
|
|
|
// vim: set ts=3:sw=3
|