This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 3.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dashlane to 1Password</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.2.3/css/bulma.min.css" />
<link rel="stylesheet" href="/app.css">
</head>
<body>
<div id="app">
<div class="section">
<div class="container">
<div class="columns">
<div class="column is-7 content">
<h1>Dashlane to 1Password</h1>
<h3>What does this do?</h3>
<p>
This is a tool that converts the Dashlane exported file (Unsecured archive (readable) in CSV format), to an 1Password compatible file (which can be imported). I hope this helps people who are switching from Dashlane to 1Password. If you experience an issue, please open an issue on the <a href="https://github.com/vblinden/dashlane-to-1password/issues" target="_blank">GitHub project</a> page.
</p>
<h3>Is it secure? We're talking about my passwords here!</h3>
<p>
To be clear, your file will <strong>!! never ever !!</strong> touch a server, this is all being done on the client side in your browser. You can look at the code on: <a href="https://github.com/vblinden/dashlane-to-1password" target="_blank">https://github.com/vblinden/dashlane-to-1password</a>.
</p>
<h3>What do I do?</h3>
<p>
Upload your Dashlane exported file (CSV format) with the file uploader to your right, and it will automatically generate and download the 1Password compatible file.
</p>
</div>
<div class="column content">
<div class="message is-success" v-if="success_message">
<div class="message-body">
Success! The conversion went right. Try to import it in Dashlane, if it gave you any errors, please make sure you upload the file that was exported from Dashlane in the readable (unsecured) CSV format. I could only test this
converter on a handful of Dashlane exports, so it will not work for everyone. If you want to help, please create an issue on the <a href="https://github.com/vblinden/dashlane-to-1password/issues" target="_blank">GitHub project page</a>.
</div>
</div>
<div class="has-text-centered">
<p class="has-text-centered">
Upload your "Unsecured archive (readable) in CSV format" file exported from Dashlane here.
</p>
<input type="file" @change="upload">
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/lodash/4.17.2/lodash.min.js"></script>
<script src="/lib/papaparse.js"></script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="app.js"></script>
</body>
</html>