Skip to content

Commit

Permalink
add website icon and make faq answers better
Browse files Browse the repository at this point in the history
  • Loading branch information
gokdenizozkan committed Jul 7, 2024
1 parent a7e77fe commit 05e7bef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion css/bulma.min.wdarkly.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added img/kpm2csv-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 15 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>kpm2csv by Gökdeniz Özkan</title>
<link rel="icon" type="image/x-icon" href="img/kpm2csv-icon.png">
<link rel="stylesheet" href="css/bulma.min.wdarkly.css" />
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html"><img src="img/kpm2csv-icon.png" width="75px" alt="kpm 2 csv converter icon that shows two documents, one having kaspersky logo on it and the other having CVS text on it, are connected with arrows"/></a>
<a class="navbar-item" href="index.html">KPM-2-CSV Converter</a>
</div>
</nav>

<main class="container">
<section class="section is-small">
<h1 class="title">Transfer Data From KPM to Others</h1>
<p class="subtitle">Convert your plain text Kaspersky Password Manager exports into CSV files so that you can import them into other password managers such as 1Password.</p>
<p class="subtitle">Convert your plain text Kaspersky Password Manager export data into CSV files so that you can import them into other password managers such as 1Password.</p>
</section>

<section id="upload-section" class="section">
Expand Down Expand Up @@ -61,20 +63,22 @@ <h1 class="title">Transfer Data From KPM to Others</h1>
<h2 class="title">FAQ</h2>
<details open>
<summary><b>Is it safe?</b></summary>
<p>Yes. Every operation is done locally, and you can see it if it is the case by checking the source code of this website <a href="https://github.com/gokdenizozkan/kpm2csv">here</a>.</p>
<p>Yes. Every operation is done locally. See the <a href="https://github.com/gokdenizozkan/kpm2csv" target="_blank">source code</a> and learn more about the entire process of conversion <a href="https://github.com/gokdenizozkan/kpm2csv" target="_blank">here</a>.</p>
</details>
<hr />
<details>
<summary><b>How does it work?</b></summary>
<p>
KPM exports do not adhere to any standards other password managers use. Instead, they use a plain text format with a unique template.
Because it is still a template, we can simply understand the rules of it and extract the data from that.
So:
KPM offers exporting your data into a plain text file with a unique format
that is not supported by any other password managers.
However, we can parse the data as the format has a pattern. And convert it to another format.

That is what we do here:
<ul>
<li>1. Extract the data.</li>
<li>2. Convert it to CSV.</li>
</ul>
</p>
<ul>
<li>1. Extract data.</li>
<li>2. Convert it to CSV.</li>
</ul>
</details>
<hr />
<details>
Expand All @@ -84,16 +88,13 @@ <h2 class="title">FAQ</h2>
<hr />
<details>
<summary><b>Which password managers support CSVs?</b></summary>
<p>Most probably, all. I, myself, wrote this entire site and converter for the sake of transferring my accounts from KPM to 1Password.</p>
<p>Almost all password managers support CSV format. You should be fine. I, for example, used it with 1Password.</p>
</details>
</section>

<footer id="footer" class="footer">
<div class="content has-text-centered">
<p>
Created by Gökdeniz Özkan<br>
The source code is licensed <a href="https://opensource.org/license/mit">MIT</a>.
</p>
<p>Created by <a href="https://linkedin.com/in/gokdenizozkan" target="_blank">Gökdeniz Özkan</a><br>The <a href="https://github.com/gokdenizozkan/kpm2csv" target="_blank">source code</a> is licensed <a href="https://opensource.org/license/mit">MIT</a>.</p>
</div>
</footer>
</main>
Expand Down

0 comments on commit 05e7bef

Please sign in to comment.