cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / hsts_view.html
blob7a64ad18074b19cd3c3cf859f5df86e0a0f87d87
1 <style>
2 #hsts-view-tab-content tt {
3 word-wrap: break-word;
5 </style>
7 <!-- HSTS tab -->
8 <div id=hsts-view-tab-content class=content-box>
9 <div class=deindent-header>
10 HSTS is HTTPS Strict Transport Security: a way for sites to elect to
11 always use HTTPS. See <a href="http://dev.chromium.org/sts" target=_blank>
12 http://dev.chromium.org/sts</a>.</div>
14 <!-- This UI allows a user to query and update the browser's list of
15 HSTS domains. -->
17 <h4>Add domain</h4>
19 <p>Input a domain name to add it to the HSTS set:</p>
20 <form id=hsts-view-add-form>
21 Domain: <input type=text id=hsts-view-add-input type="url"
22 placeholder="example.com"><br>
23 <label>Include subdomains for STS: <input type="checkbox" id=hsts-view-check-sts-input></label><br>
24 <label>Include subdomains for PKP: <input type="checkbox" id=hsts-view-check-pkp-input></label><br>
25 <label>Public key fingerprints: <input type=text id=hsts-view-add-pins style="width: 25em; max-width: 100%;"></label><br>
26 <p style="font-size: small; color: #767676; font-style: italic; margin-left: 2em; max-width: 40em; max-width: 100%;">(public key fingerprints are comma separated and consist of the hash function followed by a foreslash and the base64 encoded fingerprint, for example <tt>sha1/Guzek9lMwR3KeIS8wwS9gBvVtIg=</tt>)</p>
27 <input type=submit value="Add" id=hsts-view-add-submit>
28 </form>
30 <h4>Delete domain</h4>
32 <p>
33 Input a domain name to delete it from the HSTS set
34 (<i>you cannot delete preloaded entries</i>):
35 </p>
36 <form id=hsts-view-delete-form>
37 Domain: <input type=text id=hsts-view-delete-input type="url"
38 placeholder="example.com">
39 <input type=submit value="Delete" id=hsts-view-delete-submit>
40 </form>
42 <h4>Query domain</h4>
44 <p>Input a domain name to query the current HSTS set:</p>
45 <form id=hsts-view-query-form>
46 Domain: <input type=text id=hsts-view-query-input type="url"
47 placeholder="example.com">
48 <input type=submit value="Query" id=hsts-view-query-submit>
49 </form>
50 <div style="margin-top: 1em; margin-left: 2em;" id=hsts-view-query-output></div>
51 </div>