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-08-04 10:03:44 -04:00
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8"></meta>
|
2015-10-08 11:55:58 -04:00
|
|
|
<link rel="stylesheet" href="{{prefix}}static/site.css" />
|
|
|
|
|
<link rel="stylesheet" href="{{prefix}}static/user.css" />
|
2016-02-28 13:40:16 +01:00
|
|
|
<title>{{#i18n.Translations}}{{new_tripcode_title}}{{/i18n.Translations}}</title>
|
2015-08-04 10:03:44 -04:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2016-02-28 13:40:16 +01:00
|
|
|
<pre>{{#i18n.Translations}}{{new_tripcode_label}}{{/i18n.Translations}}:
|
|
|
|
|
<div id="secret_key">{{#i18n.Translations}}{{secret_key}}{{/i18n.Translations}}: {{secret}}</div><div id="public_key">{{#i18n.Translations}}{{public_key}}{{/i18n.Translations}}: {{public}}</div><div>{{#i18n.Translations}}{{tripcode}}{{/i18n.Translations}}: <span class="tripcode" id="capcode_key">{{{tripcode}}}</span></div>
|
2015-08-04 10:03:44 -04:00
|
|
|
</pre>
|
|
|
|
|
</body>
|
2015-11-19 20:07:23 -05:00
|
|
|
</html>
|