aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/guide-register.html
diff options
context:
space:
mode:
authorMatt Rude <[email protected]>2018-02-05 02:25:45 -0600
committerMatt Rude <[email protected]>2018-02-05 02:25:45 -0600
commit97d7f0413ea1b068af20a21a6fa1002b286c8ba5 (patch)
treea7948b62d793185839a314d0f90094ee2a84f323 /_includes/guide-register.html
parent2c117a6994b3cf814638e2b98cb78203539ec11a (diff)
downloadxmpp-site-lite-97d7f0413ea1b068af20a21a6fa1002b286c8ba5.tar.gz
xmpp-site-lite-97d7f0413ea1b068af20a21a6fa1002b286c8ba5.tar.bz2
xmpp-site-lite-97d7f0413ea1b068af20a21a6fa1002b286c8ba5.zip
Updates
Diffstat (limited to '_includes/guide-register.html')
-rw-r--r--_includes/guide-register.html95
1 files changed, 0 insertions, 95 deletions
diff --git a/_includes/guide-register.html b/_includes/guide-register.html
deleted file mode 100644
index 9a53aa2..0000000
--- a/_includes/guide-register.html
+++ /dev/null
@@ -1,95 +0,0 @@
-
- {% if site.register-web == 1 %}
- <div id="register-local-server" class="section-header-nug">
- <center><h2>Register an Account on the Local Server</h2></center>
- </div>
- <div class="row">
- {% if site.register-web == 2 %}
- <div class="card" style="border-color:#9FCF6C;margin-left:25px;">
- <div class="panel-heading" style="background-color:#9FCF6C;border-color:transparent;color:rgb(52, 68, 35);">
- <div class="panel-title"><center><h4>Registration Form</h4></center></div>
- </div>
- <div class="panel-body" style="margin-bottom: 15px;">
- <form action="{{ site.url }}/register/" method="post" class="form-horizontal needs-validation" style="padding: 15px;" novalidate>
- <div style="margin-bottom: 25px" class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
- <div class="input-group">
- <input type="text" class="form-control" name="username" placeholder="Username" id="username" required />
- <div class="input-group-append">
- <span class="input-group-text" style="font-size:0.8em;font-weight:bold;">@{hostname}</span>
- </div>
- <div class="invalid-feedback" style="width: 100%;">Your username is required.</div>
- </div>
- </div>
- <div style="margin-bottom: 25px" class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
- <div class="input-group">
- <input type="password" class="form-control" name="password" placeholder="Password" id="password" required />
- </div>
- </div>
- <div style="margin-bottom: 25px" class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
- <div class="input-group">
- <input type="password" class="form-control" name="confirm_password" placeholder="Confirm Password" id="confirm-password" required />
- </div>
- </div>
- <div style="margin-bottom: 25px" class="input-group">
- <span class="input-group-addon"><i class="glyphicon glyphicon-envelope"></i></span>
- <div class="input-group">
- <input type="email" class="form-control" name="email" placeholder="E-Mail" id="email" required />
- <div class="invalid-feedback" style="width: 100%;">Your email address is required.</div>
- </div>
- </div>
- <div style="margin-bottom:25px;margin:0 auto;" class="input-group test">
- {captcha}
- </div>
- <div style="margin-top:15px;margin-bottom:0;" class="form-group">
- <div class="col-sm-12 controls">
- <input type="submit" value="Register" class="btn btn-success pull-right" />
- <input type="reset" value="Clear" class="btn btn-default pull-right" style="margin-right:15px" />
- </div>
- </div>
- </form>
- </div>
- </div>
- {% endif %}
- <p>You will need to go to the <a href="/register">Register</a> page.
- </div>
-
-
-
-
- <div id="register-diffrent-server" class="section-header-nug">
- <center><h2>Register an Account on a Diffrent Server</h2></center>
- </div>
-
- {% endif %}
-<p>This list of servrs may</p>
-
-<div class="alert alert-info" role="alert">Servers listed with the registraion method of "<i>In-band</i>", require you to register with a client. Servers with a "<i>Website</i>" require you to connect to the website and register via a form and generally will require you to provide an email and solve a captcha.</div>
-
-<h3>List of Servers</h3>
-<table class='table' style='width:100%'>
- <thead>
- <tr>
- <th>Service Name</th>
- <th><center>Registration Method</center></th>
- <th><center>Website<br />Language</center></th>
- <th><center>Service<br />Price</center></th>
- <th><a href='https://xmpp.org/extensions/xep-0375.html'>XEP-0375</a> complient</th>
- <th><a href='https://xmpp.org/extensions/xep-0368.html'>XEP-0368</a> complient</th>
- </tr>
- </thead>
- <tbody>
-{% for service in site.data.server-compliance %}
- <tr>
- <td style="min-width:150px;"><a href='{{ service.url }}'>{{ service.name }}</a></td>
- <td style="min-width:100px;"><center>{% if service.registration-url %}<a href="{{ service.registration-url }}">{{ service.registration }}</a>{% elsif service.registration %}{{ service.registration}}{% else %}<i>Unknown</i>{% endif %}</center></td>
- <td><center>{{ service.language }}</center></td>
- <td><center>{% if service.price %}{{ service.price }}{% else %}Free{% endif %}<center></td>
- {% if service.xep-375 == 1 %}<td class=PASSED style="width:75px;"><center>Yes</center></td>{% else %}<td class=FAILED><center>No</center></td>{% endif %}
- {% if service.xep-368 == 1 %}<td class=PASSED style="width:75px;"><center>Yes</center></td>{% else %}<td class=FAILED><center>No</center></td>{% endif %}
- </tr>
-{% endfor %}
- </tbody>
-</table>