Compare commits
3 Commits
ceb109e652
...
42a589f5c0
Author | SHA1 | Date |
---|---|---|
AJ ONeal | 42a589f5c0 | |
AJ ONeal | 5d07cec7a3 | |
AJ ONeal | f2dc3276a1 |
31
index.html
31
index.html
|
@ -2,7 +2,7 @@
|
|||
<head>
|
||||
<title>Greenlock™</title>
|
||||
</head>
|
||||
<body>
|
||||
<body hidden>
|
||||
<div>
|
||||
<br>
|
||||
<h3>Greenlock™ - Instant, Free SSL Certificates via Let's Encrypt v2</h3>
|
||||
|
@ -14,6 +14,7 @@
|
|||
<!-- Step 1 Choose Domain(s) -->
|
||||
<form class="js-acme-form js-acme-form-domains">
|
||||
<h1><label>What's your domain?</label></h1>
|
||||
<h4>Certificates are valid for 90 days. Renewal is free :)</h4>
|
||||
<input class="js-acme-domains" type="text" placeholder="example.com,*.example.com" required>
|
||||
<br>
|
||||
<button type="submit">Next</button>
|
||||
|
@ -198,13 +199,37 @@ var server = https.createServer({
|
|||
-->
|
||||
</form>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<div><small>
|
||||
<h3></h3>
|
||||
<a href="https://git.coolaj86.com/coolaj86/greenlock.html">View Source</a> (git)
|
||||
<!-- or
|
||||
<pre><code>git clone https://git.coolaj86.com/coolaj86/greenlock.html.git</code></pre>
|
||||
Or view the live site code (same as live-site branch):
|
||||
<pre><code>wget https://greenlock.ppl.family --mirror --convert-links --adjust-extension --page-requisites --no-parent</code></pre>
|
||||
</small></div>
|
||||
-->
|
||||
|
||||
<script src="./js/bacme.js"></script>
|
||||
<script src="./js/app.js"></script>
|
||||
|
||||
<script src="./js/pkijs.org/v1.3.33/common.js"></script>
|
||||
<script src="./js/pkijs.org/v1.3.33/asn1.js"></script>
|
||||
<script src="./js/pkijs.org/v1.3.33/x509_schema.js"></script>
|
||||
<script src="./js/pkijs.org/v1.3.33/x509_simpl.js"></script>
|
||||
<script src="./js/browser-csr/v1.0.0-alpha/csr.js"></script>
|
||||
|
||||
<script src="./js/bacme.js"></script>
|
||||
<script src="./js/app.js"></script>
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118745161-2"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'UA-118745161-2');
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue