This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
75 lines (71 loc) · 4.64 KB
/
index.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!--
(c) Copyright Ascensio System SIA 2020
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.
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>WordPress</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.js"></script>
<script type="text/javascript" src="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins-ui.js"></script>
<link rel="stylesheet" href="https://onlyoffice.github.io/sdkjs-plugins/v1/plugins.css">
<script type="text/javascript" src="scripts/wordpress.js"></script>
<script type="text/javascript" src="scripts/wordpresshelper.js"></script>
<link href="resources/css/style.css" rel="stylesheet">
</head>
<body id="body">
<div id="main-container">
<div id="configState" style="margin: 12px;">
<div><span>To use Wordpress, register this editor as an app. Copy the link and insert it as Redirect URL in the form that will be opened.</span> <a target="_blank" href="https://github.com/ONLYOFFICE/plugin-wordpress/tree/develop#configuration">Learn more here.</a></div>
<input id="redirectConfig" style="width: 100%; margin-top: 8px;" readonly class="form-control" />
<div id="redirectUrlCopy" style="margin: 15px 0 15px 0; display: flex; align-items: center; justify-content: center;" class="noselect btn-text-default">Copy Link and Open Form</div>
<div>In the form, enter any application name and description, accept Terms and Conditions and generate a secret. Enter Application ID below and save it.</div>
<div style="margin-top: 8px;">
<span>Client ID</span>
<input id="appIdField" style="width: 100%;" autocomplete="off" class="form-control" type="text" placeholder="Client ID" />
</div>
<div style="margin-top: 8px;">
<span>Client secret key</span>
<input id="appSecretField" style="width: 100%;" autocomplete="off" class="form-control" type="text" placeholder="Client secret key" />
</div>
<div id="saveConfigBtn" style="width: 100%; margin: 15px 0 15px 0; display: flex; align-items: center; justify-content: center;" class="noselect btn-text-default">Save</div>
</div>
<div id="loginState" style="display:none; margin: 12px;">
<span>Connect an account to publish documents to your WordPress site</span>
<div id="loginBtn" class="noselect btn-text-default" style="margin: 15px 0 15px 0; display: flex; align-items: center; justify-content: center;">Login</div>
<div id="reconfigBtn" class="noselect btn-text-default" style="margin: 15px 0 15px 0; display: flex; align-items: center; justify-content: center;">Reconfigure</div>
</div>
<div class="wait i18n">Please wait...</div>
<div id="authorization-form" style="display: none;">
<div class="i18n">Connect account to publish documents to your WordPress site</div>
<button id="sent-auth" class="i18n">Connect</button>
</div>
<div id="publish-form">
<div class="blog">
<p class="blog-url"></p>
<p class="username"></p>
</div>
<div class="publish">
<label class="i18n">Title</label>
<input type="text" id="title" class="form-control" />
<div style="display: flex; justify-content: start;">
<div id="publish" class="noselect btn-text-default" style="margin: 15px 5px 15px 0; display: flex; align-items: center; justify-content: center; width: 50px;">Publish</div>
<div id="draft" class="noselect btn-text-default" style="margin: 15px 0 15px 0; display: flex; align-items: center; justify-content: center; width: 80px;">Save as Draft</div>
</div>
</div>
</div>
<div id="logout" style="display: none;">
<label id="logout_label" style="cursor:pointer; position:absolute; bottom: 15px; right: 10px; border-bottom: 1px dashed #444444;">Logout</label>
</div>
</div>
</body>
</html>