aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.WebDashboard/Html/userImage.html
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-23 00:04:36 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-23 00:04:36 -0400
commitb20151fff373100da7946df93afb7dd4dccea3e4 (patch)
treea16d7085c0eab807c309c94461ed60821029f1ff /MediaBrowser.WebDashboard/Html/userImage.html
parent4bc27f3a65ddbffcc7b74683df72503f20df275c (diff)
copy dashboard to the output folder and load from the file system, instead of using embedded resources
Diffstat (limited to 'MediaBrowser.WebDashboard/Html/userImage.html')
-rw-r--r--MediaBrowser.WebDashboard/Html/userImage.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/MediaBrowser.WebDashboard/Html/userImage.html b/MediaBrowser.WebDashboard/Html/userImage.html
deleted file mode 100644
index c28d2129ef..0000000000
--- a/MediaBrowser.WebDashboard/Html/userImage.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title> </title>
-</head>
-<body>
- <div id="userImagePage" data-role="page" class="page type-interior userProfilesConfigurationPage">
-
- <div data-role="content">
- <div class="content-primary">
- <div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
- <a href="#" onclick="Dashboard.navigate('editUser.html', true);" data-role="button">Profile</a>
- <a href="#" data-role="button" class="ui-btn-active">Image</a>
- <a href="#" data-role="button" onclick="Dashboard.navigate('updatePassword.html', true);">Password</a>
- <a href="#" data-role="button" onclick="Dashboard.navigate('library.html', true);">Media Library</a>
- </div>
- <div class="readOnlyContent">
- <p id="fldImage"></p>
- <p id="fldDeleteImage" style="display: none;">
- <button id="btnDeleteImage" type="button" data-icon="delete" onclick="UserImagePage.deleteImage();">
- Delete Image
- </button>
- </p>
- </div>
-
- <h2 id="headerUploadNewImage" style="display: none;">Upload New Image</h2>
- <form id="uploadUserImageForm">
- <ul data-role="listview" class="ulForm">
- <li id="fldNewImage">
- <p>1:1 Aspect Ratio Recommended</p>
- <input type="file" accept="image/*" id="uploadUserImage" name="uploadUserImage" onchange="UserImagePage.onFileUploadChange(this);" />
-
- <div id="userImageDropZone" class="imageDropZone">
- <h3>Drop Image Here (Chrome / Firefox / Safari)</h3>
- <output id="userImageOutput"></output>
- </div>
-
- </li>
- <li id="fldNewImagePreview"></li>
- <li id="fldUpload" style="display: none;">
- <button type="submit" data-icon="picture">Upload</button>
- </li>
- </ul>
- </form>
-
- </div>
- </div>
- <script type="text/javascript">
- $('#uploadUserImageForm').on('submit', UserImagePage.onSubmit);
- </script>
- </div>
-</body>
-</html>