Software /
code /
prosody-modules
Comparison
mod_invites_register_web/html/register_error.html @ 4093:a2116f5a7c8f
mod_invites_register_web: New module to allow web registration with an invite token
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 11 Sep 2020 13:51:54 +0100 |
comparison
equal
deleted
inserted
replaced
4092:2b6918714792 | 4093:a2116f5a7c8f |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
6 <title>Invite to {site_name}</title> | |
7 <link rel="stylesheet" href="/share/bootstrap4/css/bootstrap.min.css"> | |
8 <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | |
9 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | |
10 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | |
11 <link rel="manifest" href="/site.webmanifest"> | |
12 <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> | |
13 <meta name="msapplication-TileColor" content="#fbd308"> | |
14 <meta name="theme-color" content="#fbd308"> | |
15 </head> | |
16 <body> | |
17 <div id="background" class="fixed-top overflow-hidden" aria-role="none presentation"></div> | |
18 <div id="form" class="container col-md-8 col-md-offset-2 col-sm-8 cold-sm-offset-2 col-lg-6 col-lg-offset-3 mt-2 mt-md-5"> | |
19 <div class="card rounded-lg shadow"> | |
20 <h1 class="card-header rounded-lg rounded-lg"> | |
21 Invite to {site_name}<br/> | |
22 </h1> | |
23 <div class="card-body" > | |
24 <h5 class="card-title">Registration error</h5> | |
25 | |
26 <p>{message?Sorry, there was a problem registering your account.}</p> | |
27 </div> | |
28 </div> | |
29 </div> | |
30 <script src="/share/jquery/jquery.min.js"></script> | |
31 <script src="/share/bootstrap4/js/bootstrap.min.js"></script> | |
32 </body> | |
33 </html> |