1
0
mirror of https://github.com/ArcticFoxes-net/ONC-Converter synced 2024-09-19 08:04:43 -04:00
ONC-Converter/index.html

29 lines
703 B
HTML
Raw Normal View History

2017-11-15 12:31:02 -05:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>OpenVPN to ONC</title>
<meta name="description" content="Convert OpenVPN config files to ONC files">
<link rel="stylesheet" href="style.css">
<script type="module" src="js/scripts.js"></script>
</head>
<body>
<div>
<h1>ovpn2onc</h1>
<ul>
<li>OpenVPN config file (*.ovpn): <input type="file" id="inputopenvpn"></li>
<li>Certificates: <input mutliple type="file" id="inputcertificate"></li>
</ul>
<button id="clickbutton" type="button">Convert</button>
</div>
<div>
<p>Output</p>
<textarea readonly id="output" wrap="off" rows="10" cols="50"></textarea>
</div>
</body>
</html>