Microservice to bring 2FA to self hosted PDSes
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="utf-8"/>
5 <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, viewport-fit=cover"/>
6 <meta name="referrer" content="origin-when-cross-origin"/>
7 <title>Request Crawl - {{pds_hostname}}</title>
8 <link rel="stylesheet" href="/admin/static/css/admin.css">
9</head>
10<body>
11<div class="layout">
12 {{> admin/partials/sidebar.hbs}}
13
14 <main class="main">
15 {{> admin/partials/flash.hbs}}
16
17 <h1 class="page-title">Request Crawl</h1>
18 <p class="page-description">Request a relay to crawl this PDS. This sends your PDS hostname to the relay so it
19 can discover and index your content.</p>
20
21 <div class="form-card">
22 <form method="POST" action="/admin/request-crawl">
23 <div class="form-group">
24 <label for="relay_host">Relay Host</label>
25 <input type="text" id="relay_host" name="relay_host" value="{{default_relay}}" required/>
26 <div class="hint">The relay hostname to send the crawl request to (e.g., bsky.network)</div>
27 </div>
28 <button type="submit" class="btn btn-primary">Request Crawl</button>
29 </form>
30 </div>
31 </main>
32</div>
33</body>
34</html>