aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/resources/views/import.edge
blob: f7b52b17951f0bed23e8ba25c70f7623afabeff8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@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 />

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