This repository has been archived on 2023-08-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2015-08-05 07:45:16 -04:00
|
|
|
{{!
|
|
|
|
|
keygen.mustache -- page containing a newly generated tripcode
|
|
|
|
|
template parameters:
|
|
|
|
|
- prefix ( the site prefix )
|
|
|
|
|
- public ( the public key in hex )
|
|
|
|
|
- secret ( the secret key in hex )
|
|
|
|
|
- tripcode ( html version of the public key )
|
2015-12-23 01:07:29 +01:00
|
|
|
}}
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8"></meta>
|
|
|
|
|
<link rel="stylesheet" href="{{prefix}}static/site.css" />
|
|
|
|
|
<link rel="stylesheet" href="{{prefix}}static/user.css" />
|
|
|
|
|
<title> here is a new tripcode </title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<pre>New Tripcode:
|
|
|
|
|
<div id="secret_key">secret: {{secret}}</div><div id="public_key">public: {{public}}</div><div>tripcode: <span class="tripcode" id="capcode_key">{{{tripcode}}}</span></div>
|
|
|
|
|
</pre>
|
|
|
|
|
</body>
|
2015-12-23 02:38:08 +01:00
|
|
|
</html>
|