Skip to content
Snippets Groups Projects
SignUp.html 4.11 KiB
Newer Older
{% extends "auth/base.html" %}
Mitchell Moore's avatar
Mitchell Moore committed
{% block title %} User Registration {% endblock %}
{% block head %}
  {{ super() }}
<script src="/register/static/scripts/application.js"></script>
  <style type="text/css">
    .important { color: #336699; }
  </style>
    <link rel="shortcut icon" type="image/x-icon" href="/public/favicon.ico">
Mitchell Moore's avatar
Mitchell Moore committed
<link rel="stylesheet" media="all" href="/register/static/style/application.css">
<link rel="stylesheet" media="all" href="/register/static/style/app2.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
Ishan Patel's avatar
Ishan Patel committed
<style>
.navbar-inverse {
  background-color: rgb(0,99,65);
}

</style>
<body data-gr-c-s-loaded="true">
<header>
    {% block body %}
  <nav class="navbar navbar-inverse navbar-static-top">
    <div class="container-fluid">
      <div class="navbar-header">
	<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-9" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
	<a class="navbar-brand" href="/register">Research Computing</a>
      </div>
      <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-9">
	<ul class="nav navbar-nav">

	</ul>
	<div class="navbar-right">
	  <ul class="nav navbar-nav">
	    <li>
	    <a target="_blank" href="https://docs.uabgrid.uab.edu/wiki/Cheaha_GettingStarted">
	      <i class="fas fa-info-circle fa-fw"></i> Online Documentation
	    </a></li>
	    <li>
	  </li></ul>
	</div>
      </div>
Ishan Patel's avatar
Ishan Patel committed
    </div>
  </nav>
</header>
<div class="container content" role="main" style="width: 625px">
    <div style="position:relative;">
  <img alt="logo" height="100" style="margin-bottom: 20px" src="/register/static/img/cheaha-logo-a605de0aecd3006b82a5ee30a6d0cb8cd9bf8b7e836296cc293eac746a4c2b11.png">
  <a href="https://tinyurl.com/cheahaAL" target="_blank">
    <div style="float:left;position:absolute;display:block;left:310px;top:-6px;padding:10px 20px;"> </div>
  </a>
</div>
Mitchell Moore's avatar
Mitchell Moore committed
    <h2>Hello, {{ user }}!</h2>
Mitchell Moore's avatar
Mitchell Moore committed
    <form action="." method="post">
Ishan Patel's avatar
Ishan Patel committed
      <div class="signUpContainer">
          <label><b>{{ form.fullname.label }}<br></b></label>
          {{ form.fullname(class_="form-control", placeholder="Enter Full Name") }}
          {{ form.submit(class_="btn btn-primary btn-block" ) }}

          {% with messages = get_flashed_messages() %}
            {% if messages %}
            {% for message in messages %}
            <div>
                <strong style="color: #be051b; text-align: center;">{{ message }}</strong>
            </div>
      {% endfor %}
   {% endif %}
{% endwith %}

Ishan Patel's avatar
Ishan Patel committed
      </div>
    </form>
    </div>
{% if loading %}
            <div class="joyride-tip-guide" data-index="0" style="visibility: visible; display: block; top: 77.5px; left: 570px;"><span class="joyride-nub" style="display: none;"></span><div class="joyride-content-wrapper" role="dialog"><ol>
        <h4>
root's avatar
root committed
          Processing User Registration:
        </h4>
        <li>
          <b>Create</b> a new job by copying from an existing job template directory or a previously run job directory.
        </li>
        <li>
          <b>Edit</b> the files in the job via the file explorer.
        </li>
        <li>
          <b>Submit</b> the job and monitor the progress from the "Job Composer" index page.
        </li>
root's avatar
root committed
                <img class="col-sm-3 col-sm-offset-4" src="{{ url_for('static',
  filename='img/loading.gif') }}" ng-show="loading">
            </div></div>
    <div class="joyride-modal-bg" style="display: block;"></div>
{% endif %}
Ishan Patel's avatar
Ishan Patel committed
  <div class="container-fluid">
    <div class="row">
      <div class="col-md-6 col-sm-6">
	    <a href="https://osc.github.io/Open-OnDemand/">
Mitchell Moore's avatar
Mitchell Moore committed
	      <img class="footer-logo" alt="Powered by Open OnDemand" height="40" style="margin-bottom: 20px" src="/register/static/img/OpenOnDemand_powered_by_RGB-cb3aad5ff5350c7994f250fb334ddcc72e343233ce99eb71fda93beddd76a847.svg">
Ishan Patel's avatar
Ishan Patel committed
      </div>
    </div>
  </div><!-- /.container -->
</html>