go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/auth_service/services/frontend/templates/pages/ip_allowlists.html (about) 1 {{define "title"}}CrIA v2{{end}} 2 3 {{define "content"}} 4 5 <script type="text/javascript" src="/static/js/ip_allowlists.js"></script> 6 7 <!-- Fix margins on this container --> 8 <div class="container px-0 py-2" id="content-box"> 9 <div class="card"> 10 <div class="card-header">IP Allowlists</div> 11 <div class="card-body" style="padding: 2rem"> 12 <div class="row mb-4"> 13 <select class="form-select" id="allowlist-selector"> 14 </select> 15 </div> 16 <div id="allowlist-pane"> 17 <div class="row mb-4"> 18 <label>Description</label> 19 <input id="description-box" type="text" class="form-control" readonly="" name="description"></input> 20 </div> 21 <div class="row mb-4" style="font-family: monospace"> 22 <textarea id="subnet-box" class="form-control" rows="5" name="subnets" readonly="" wrap="off"></textarea> 23 </div> 24 </div> 25 <div class="row"> 26 <hr/> 27 <p> 28 The configuration is distributed by 29 <a target="_blank" href="https://config.luci.app"> 30 luci-config 31 </a> 32 . Using revision 33 <a target="_blank" href="#" style="font-family: monospace"> 34 1234 35 </a>. 36 </p> 37 </div> 38 </div> 39 </div> 40 </div> 41 {{end}}