apps/og/templates/index.html 452 B raw
1
{{define "index.html"}}{{template "base.html" .}}{{end}}
2
{{define "title"}}OG{{end}}
3
{{define "content"}}
4
<div class="index-container">
5
    <form action="/check" method="POST" class="check-form">
6
        <input
7
            type="text"
8
            name="url"
9
            placeholder="example.com"
10
            required
11
            autocomplete="url"
12
            autofocus
13
        >
14
        <button type="submit">Check</button>
15
    </form>
16
</div>
17
{{end}}