You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

62 lines
3.7 KiB
HTML

<!--
TerranQuest - Augmented Reality fantasy game
Copyright 2016 Netsyms Technologies
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div class="row">
<div class="col-lg-12 text-center">
<div class="panel panel-default">
<div class="panel-heading whitetext" id="signupheader" style="color: white;">
Create Netsyms Account
</div>
<div class="panel-body">
<div id="errorbase" class="alert alert-danger alert-dismissable" style="display: none;">
<p id="errormsg">An error occurred.</p>
</div>
<div class="input-group">
<span class="input-group-addon" id="basic-addon-usericon"><i class="fa fa-user fa-fw"></i></span>
<input type="text" placeholder="Username" id="usernameBox" class="form-control" aria-describedby="basic-addon-usericon" autocorrect="off" autocapitalize="off" spellcheck="false"/>
</div>
<br />
<div class="input-group">
<span class="input-group-addon" id="basic-addon-passicon"><i class="fa fa-key fa-fw"></i></span>
<input type="password" placeholder="Password" id="passwordBox" class="form-control" aria-describedby="basic-addon-passicon" autocorrect="off" autocapitalize="off" spellcheck="false" />
</div>
<br />
<div class="input-group">
<span class="input-group-addon" id="basic-addon-passicon2"><i class="fa fa-check fa-fw"></i></span>
<input type="password" placeholder="Confirm Password" id="passwordBox2" class="form-control" aria-describedby="basic-addon-passicon2" autocorrect="off" autocapitalize="off" spellcheck="false" />
</div>
<br />
<div class="input-group">
<span class="input-group-addon" id="basic-addon-emailicon"><i class="fa fa-envelope fa-fw"></i></span>
<input type="email" placeholder="Email" id="emailBox" class="form-control" aria-describedby="basic-addon-emailicon" autocorrect="off" autocapitalize="off" spellcheck="false" />
</div>
<br />
<div class="input-group">
<span class="input-group-addon" id="basic-addon-nameicon"><i class="fa fa-male fa-fw"></i></span>
<input type="text" placeholder="Real Name" id="nameBox" class="form-control" aria-describedby="basic-addon-nameicon" autocorrect="off" autocapitalize="off" spellcheck="false" />
</div>
<br />
<p>By signing up, you agree to the Netsyms Technologies Terms of Service and Privacy Policy at netsyms.com/legal</p>
</div>
<div class="panel-footer">
<a href="#" onclick="dosignup()" id="signupBtn" class="btn btn-success btn-wide"><i class="fa fa-user-plus"></i> Sign Up</a><br /><br />
<a href="#" onclick="openscreen('login')" id="cancelSignupBtn" class="btn btn-danger btn-wide"><i class="fa fa-times"></i> Cancel</a>
</div>
</div>
</div>
</div>
<script src="js/auth.js"></script>