mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
135 lines
6.2 KiB
Plaintext
135 lines
6.2 KiB
Plaintext
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html>
|
|
<head runat="server">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<!--
|
|
*
|
|
* (c) Copyright Ascensio System SIA 2025
|
|
*
|
|
* 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.
|
|
*
|
|
-->
|
|
<title>ONLYOFFICE Document Editors</title>
|
|
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:900,800,700,600,500,400,300&subset=latin,cyrillic-ext,cyrillic,latin-ext" />
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" />
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/jquery-ui.css" />
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/media.css">
|
|
<link rel="stylesheet" type="text/css" href="stylesheets/forgotten.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="center main-nav">
|
|
<a href="./">
|
|
<img src ="images/logo.svg" alt="ONLYOFFICE" />
|
|
</a>
|
|
</div>
|
|
<menu class="responsive-nav">
|
|
<li>
|
|
<a href="#">
|
|
<img src ="images/mobile-menu.svg" alt="ONLYOFFICE" />
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="./">
|
|
<img src ="images/mobile-logo.svg" alt="ONLYOFFICE" />
|
|
</a>
|
|
</li>
|
|
</menu>
|
|
</header>
|
|
<div class="center main">
|
|
<table class="table-main">
|
|
<tbody>
|
|
<tr>
|
|
<td class="left-panel section"></td>
|
|
<td class="section">
|
|
<div class="main-panel">
|
|
<menu class="links">
|
|
<li class="home-link" >
|
|
<a href="./">
|
|
<img src="images/home.svg" alt="Home"/>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="wopi">WOPI</a>
|
|
</li>
|
|
<li class="active">
|
|
<a href="forgotten">Forgotten files</a>
|
|
</li>
|
|
</menu>
|
|
<div class="stored-list">
|
|
<span class="header-list">Forgotten files</span>
|
|
<table class="tableHeader" cellspacing="0" cellpadding="0" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<td class="tableHeaderCell">Filename</td>
|
|
<td class="tableHeaderCell">Action</td>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
<div class="scroll-table-body">
|
|
<table cellspacing="0" cellpadding="0" width="100%">
|
|
<tbody>
|
|
<% for (var i = 0; i < forgottenFiles.length; i++) { %>
|
|
<tr class="tableRow" title="<%= forgottenFiles[i].name %>">
|
|
<td>
|
|
<a class="stored-edit <%= forgottenFiles[i].documentType %> action-link" href="<%=forgottenFiles[i].url%>" target="_blank">
|
|
<span><%= forgottenFiles[i].name %></span>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="<%=forgottenFiles[i].url%>">
|
|
<img class="icon-download" src="images/download.svg" alt="Download" title="Download" /></a>
|
|
<a class="delete-file" data="<%= encodeURIComponent(forgottenFiles[i].name) %>">
|
|
<img class="icon-action" src="images/delete.svg" alt="Delete" title="Delete" /></a>
|
|
</td>
|
|
</tr>
|
|
<% } %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<footer>
|
|
<div class="center">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<a href="http://api.onlyoffice.com/editors/howitworks" target="_blank">API Documentation</a>
|
|
</td>
|
|
<td>
|
|
<a href="mailto:sales@onlyoffice.com">Submit your request</a>
|
|
</td>
|
|
<td class="copy">
|
|
© Ascensio Systems SIA 2025. All rights reserved.
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</footer>
|
|
|
|
<script type="text/javascript" src="javascripts/forgotten.js"></script>
|
|
</body>
|
|
</html>
|