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-12-23 01:07:29 +01: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:33:03 +01:00
|
|
|
}}
|
2015-12-23 01:07:29 +01:00
|
|
|
<!doctype html><html><head><title>new tripcode</title></head><body><pre>
|
2015-12-23 01:33:03 +01:00
|
|
|
new tripcode
|
2015-12-23 01:07:29 +01:00
|
|
|
|
|
|
|
|
secret: {{secret}}
|
|
|
|
|
public: {{public}}
|
|
|
|
|
tripcode: {{{tripcode}}}
|
|
|
|
|
</pre></body></html>
|