aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/resources/views/import.edge
blob: 561021a0c94e16ed1fe1d8f4ee2129915648976c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@layout('layouts.main')

@section('content')
<h1>Import a Franz account</h1>
<p>Please login using your Franz account. We will import your services and workspaces.</p>
<form action="import" method="post">
  <label for="email">E-Mail address</label><br />
  <input type="email" name="email" placeholder="joe@example.com" required><br />

  <label for="password">Password</label><br />
  <input type="password" name="password" placeholder="********" required><br />

  <label for="server">API Server to import from</label><br />
  <input type="text" name="server" value="https://api.franzinfra.com" required><br />

  <button type="submit" id="submitbutton">Import Franz account</button>
</form>
@endsection