2017-05-31 13:18:42 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
2020-01-16 03:58:30 +01:00
|
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
2020-02-20 18:28:35 +01:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<script src="fn.js"></script>
|
2020-05-22 16:33:05 +02:00
|
|
|
|
<title>Radicale Web Interface</title>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<link href="css/main.css" media="screen" rel="stylesheet">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<link href="css/icon.png" type="image/png" rel="shortcut icon">
|
2020-01-16 03:58:30 +01:00
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<nav id="logoutview" class="hidden">
|
|
|
|
|
<span data-name="user" style="word-wrap:break-word;"></span>
|
|
|
|
|
<a href="" class="red" data-name="link" title="Logout">Logout</a>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</nav>
|
|
|
|
|
|
2020-01-16 04:39:22 +01:00
|
|
|
|
<section id="loadingscene">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<img src="css/loading.svg" />
|
|
|
|
|
<span>Loading</span>
|
2020-01-16 04:39:22 +01:00
|
|
|
|
<p>Please wait...</p>
|
|
|
|
|
<noscript>JavaScript is required</noscript>
|
|
|
|
|
</section>
|
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<section id="loginscene" class="container hidden">
|
|
|
|
|
<div class="logocontainer">
|
|
|
|
|
<img src="css/logo.svg" />
|
|
|
|
|
</div>
|
|
|
|
|
<h1>Sign in</h1><br />
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<form data-name="form">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<input data-name="user" type="text" placeholder="Username">
|
|
|
|
|
<input data-name="password" type="password" placeholder="Password">
|
|
|
|
|
<button class="green" type="submit">Next</button>
|
|
|
|
|
<span class="error" data-name="error"></span>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<section id="collectionsscene" class="hidden">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<div class="fabcontainer">
|
|
|
|
|
<a href="" class="green" data-name="new" title="Create a new addressbook or calendar"><img src="css/icons/new.svg" class="icon" alt="➕"></a></a>
|
|
|
|
|
<a href="" class="blue" data-name="upload" title="Upload an addressbook or calendar"><img src="css/icons/upload.svg" class="icon" alt="⬆️"></a></a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<article data-name="collectiontemplate" class="hidden">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<div class="colorbar" data-name="color"></div>
|
|
|
|
|
<span class="title" data-name="title">Title</span>
|
|
|
|
|
</h2>
|
|
|
|
|
<small>
|
|
|
|
|
<span data-name="ADDRESSBOOK">Address book</span>
|
|
|
|
|
<span data-name="CALENDAR_JOURNAL_TASKS">Calendar, journal and tasks</span>
|
|
|
|
|
<span data-name="CALENDAR_JOURNAL">Calendar and journal</span>
|
|
|
|
|
<span data-name="CALENDAR_TASKS">Calendar and tasks</span>
|
|
|
|
|
<span data-name="JOURNAL_TASKS">Journal and tasks</span>
|
|
|
|
|
<span data-name="CALENDAR">Calendar</span>
|
|
|
|
|
<span data-name="JOURNAL">Journal</span>
|
|
|
|
|
<span data-name="TASKS">Tasks</span>
|
|
|
|
|
</small>
|
|
|
|
|
<input type="text" data-name="url" value="" readonly="" onfocus="this.setSelectionRange(0, 99999);">
|
|
|
|
|
<p data-name="description" style="word-wrap:break-word;">Description</p>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<ul>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<li><a href="" title="Download" class="green" data-name="download"><img src="css/icons/download.svg" class="icon" alt="🔗"></a></li>
|
|
|
|
|
<li><a href="" title="Edit" class="blue" data-name="edit"><img src="css/icons/edit.svg" class="icon" alt="✏️"></a></li>
|
|
|
|
|
<li><a href="" title="Delete" class="red" data-name="delete"><img src="css/icons/delete.svg" class="icon" alt="❌"></a></li>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</ul>
|
|
|
|
|
</article>
|
|
|
|
|
</section>
|
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<section id="editcollectionscene" class="container hidden">
|
|
|
|
|
<h1>Edit Collection</h1>
|
|
|
|
|
<p>Editing collection <span class="title" data-name="title">title</span></p>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<form>
|
|
|
|
|
Type:<br>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<select data-name="type">
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<option value="ADDRESSBOOK">addressbook</option>
|
|
|
|
|
<option value="CALENDAR_JOURNAL_TASKS">calendar, journal and tasks</option>
|
|
|
|
|
<option value="CALENDAR_JOURNAL">calendar and journal</option>
|
|
|
|
|
<option value="CALENDAR_TASKS">calendar and tasks</option>
|
|
|
|
|
<option value="JOURNAL_TASKS">journal and tasks</option>
|
|
|
|
|
<option value="CALENDAR">calendar</option>
|
|
|
|
|
<option value="JOURNAL">journal</option>
|
|
|
|
|
<option value="TASKS">tasks</option>
|
|
|
|
|
</select><br>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
Title:<br>
|
|
|
|
|
<input data-name="displayname" type="text"><br>
|
|
|
|
|
Description:<br>
|
|
|
|
|
<input data-name="description" type="text"><br>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
Color:<br>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<input data-name="color" type="color"><br>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<span class="error hidden" data-name="error"></span><br>
|
|
|
|
|
<button type="submit" class="green" data-name="submit">Save</button>
|
|
|
|
|
<button type="button" class="red" data-name="cancel">Cancel</button>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<section id="createcollectionscene" class="container hidden">
|
|
|
|
|
<h1>Create a new Collection</h1>
|
|
|
|
|
<p>Enter the details of your new collection.</p>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<form>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
Type:<br>
|
|
|
|
|
<select data-name="type">
|
|
|
|
|
<option value="ADDRESSBOOK">Address book</option>
|
|
|
|
|
<option value="CALENDAR_JOURNAL_TASKS">Calendar, journal and tasks</option>
|
|
|
|
|
<option value="CALENDAR_JOURNAL">Calendar and journal</option>
|
|
|
|
|
<option value="CALENDAR_TASKS">Calendar and tasks</option>
|
|
|
|
|
<option value="JOURNAL_TASKS">Journal and tasks</option>
|
|
|
|
|
<option value="CALENDAR">Calendar</option>
|
|
|
|
|
<option value="JOURNAL">Journal</option>
|
|
|
|
|
<option value="TASKS">Tasks</option>
|
|
|
|
|
</select><br>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
Title:<br>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<input data-name="displayname" type="text"><br>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
Description:<br>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<input data-name="description" type="text"><br>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
Color:<br>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<input data-name="color" type="color"><br>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<span class="error" data-name="error"></span><br>
|
|
|
|
|
<button type="submit" class="green" data-name="submit">Create</button>
|
|
|
|
|
<button type="button" class="red" data-name="cancel">Cancel</button>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<section id="uploadcollectionscene" class="container hidden">
|
|
|
|
|
<h1>Upload Collection</h1>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<ul>
|
2020-01-16 03:58:31 +01:00
|
|
|
|
<li data-name="filetemplate" class="hidden">
|
2023-08-31 20:42:41 +10:00
|
|
|
|
Uploading <span data-name="name">name</span><br>
|
|
|
|
|
<img data-name="pending" src="css/loading.svg" alt="Please wait..."/>
|
|
|
|
|
<span clas="successmessage";" data-name="success">Uploaded Successfully!</span>
|
|
|
|
|
<span class="error" data-name="error"></span>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<form>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<button type="button" class="red" data-name="close">Close</button>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</form>
|
|
|
|
|
</section>
|
|
|
|
|
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<section id="deletecollectionscene" class="container hidden">
|
|
|
|
|
<h1>Delete Collection</h1>
|
|
|
|
|
<p>Do you want to delete the collection <span class="title" data-name="title">title</span>?</p>
|
|
|
|
|
<p class="red">Warning: This action cannot be reversed.</p>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
<form>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<button type="button" class="red" data-name="delete">Delete</button>
|
|
|
|
|
<button type="button" class="blue" data-name="cancel">Cancel</button>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</form>
|
2023-08-31 20:42:41 +10:00
|
|
|
|
<span class="error hidden" data-name="error"></span><br>
|
2020-01-16 03:58:30 +01:00
|
|
|
|
</section>
|