18 lines
383 B
HTML
18 lines
383 B
HTML
|
<h1>Where are you from?</h1>
|
||
|
<form action="/accept-invite" method="POST">
|
||
|
<div>
|
||
|
<label for="remote">Home server:</label>
|
||
|
<input
|
||
|
type="text"
|
||
|
id="remote"
|
||
|
name="remote"
|
||
|
placeholder="https://cernbox.cern.ch"
|
||
|
required
|
||
|
/>
|
||
|
<input type="hidden" name="token" value="{{ token }}" />
|
||
|
</div>
|
||
|
<div>
|
||
|
<button>Submit</button>
|
||
|
</div>
|
||
|
</form>
|