Facebook-Events-iCal-Converter/lib/views/index.ejs

77 lines
2.0 KiB
Plaintext
Raw Normal View History

2019-10-15 09:22:08 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-10-20 20:47:19 +02:00
<link rel="manifest" href="/manifest.json">
2019-10-20 20:57:39 +02:00
<link rel="apple-touch-icon" sizes="180x180" href="/icon-180.png">
<link rel="stylesheet" type="text/css" href="/style.css?1">
2019-10-20 20:47:19 +02:00
<title>Facebook Event to iCal Converter</title>
2019-10-15 09:22:08 +02:00
</head>
<body>
2019-10-20 20:57:39 +02:00
<header>
<a id="current-download" href="javascript:void(0)"></a>
<h1>Facebook Events to iCal Converter</h1>
</header>
<article id="main">
<p>
Insert Facebook event URL into the form. When you submit it
you will get <a href="https://en.wikipedia.org/wiki/ICalendar"><code>ics</code></a>
file that you can import
into your calendar.
</p>
<div class="row">
<form action='/download' method='POST' id="form">
<input id="url" type='text' name='url' placeholder='Paste / type FB event URL here...' />
<input id="submit" type='submit' value='Submit' />
</form>
<div id="status">
<div class="status-item" id="network">
Fetching file...
</div>
<div class="status-item" id="parsing">
Parsing data...
</div>
<div class="status-item" id="error">
</div>
<div class="status-item" id="service-worker">
</div>
2019-10-20 20:32:25 +02:00
</div>
</div>
2019-10-20 20:57:39 +02:00
<br />
<label for="nojs">
<input id="nojs" type="checkbox" />
No JavaScript
</label>
<br />
<br />
<div class="list-wrapper">
<table id="list" class="hidden">
<thead>
<tr>
<td>#</td>
<td>Link</td>
<td>Created at</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</article>
<footer>
Created by <a href="http://ondrejsynacek.com">Ondrej Synacek</a>
</footer>
<script src="/scripts.js?1"></script>
2019-10-15 09:22:08 +02:00
</body>
</html>