Gem2Browser/loadcert.html

22 lines
911 B
HTML
Raw Normal View History

2025-01-14 20:08:42 -08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2025-01-15 21:33:05 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-01-14 20:08:42 -08:00
<link rel="stylesheet" href="/style.css">
<title>Load certificate</title>
</head>
<body>
<center>
<img src="/logo.png"><br>
<h1>Load certificate</h1>
2025-01-14 20:36:54 -08:00
<p>After submitting, you will be redirected back to home, that means it's successful. Do not upload certificates with a password.</p><br>
2025-01-14 20:38:27 -08:00
<form action="/certload" method=post enctype=multipart/form-data>
2025-01-14 20:08:42 -08:00
<p>Chain file <input type=file name=cert></p>
<p>Private Key file <input type=file name=privkey></p><br>
<input type="submit" class="go" value="Upload">
</form><br>
2025-01-14 20:38:53 -08:00
<p><a href="/" class=go style="background-color: red;">Cancel</a></p>
2025-01-14 20:08:42 -08:00
</center>
</body>
</html>