-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
28 lines (28 loc) · 1.21 KB
/
home.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Convert Toggl export (json) to Clockify import (csv)</title>
<!-- https://newcss.net/ -->
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.min.css">
</head>
<body>
<header>
<h1>Toggl to Clockify</h1>
</header>
<div>
<h2>Convert Toggl export (json) to Clockify import (csv)</h2>
<ol>
<li><a href="/clients">Convert Clients</a></li>
<li><a href="/projects">Convert Projects</a></li>
<li><a href="/tasks">Convert Tasks</a></li>
<li><a href="/export?page=0">Export 0-10 000 items</a></li>
<li><a href="/export?page=1">Export 10 000-20 000 items</a></li>
<li><a href="/export?page=2">Export 20 000-30 000 items</a></li>
</ol>
<p><a href="https://support.toggl.com/en/articles/2564936-exporting-data#exporting-workspace-data" target="_blank">Toggl (workspace export)</a> to <a href="https://clockify.me/help/projects/import-clients-projects" target="_blank">Clockify (workspace import)</a></p>
</div>
</body>
</html>