Customize CD
diff --git a/templates/header.htm b/templates/header.htm
index 38c37eb..1f30a84 100644
--- a/templates/header.htm
+++ b/templates/header.htm
@@ -5,8 +5,9 @@
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<title>Sign up for <?php echo $SERVICE_ACRONYM; ?></title>
+ <link rel="stylesheet" href="./assets/css/custom_bootstrap.css"> `
+<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous"> -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
<link rel="stylesheet" href="<?php echo $BASE_URL?>/static/main.css" >
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
diff --git a/templates/register.htm b/templates/register.htm
index cc15175..dd3c255 100644
--- a/templates/register.htm
+++ b/templates/register.htm
@@ -1,3 +1,21 @@
+<div class="container ml-0 pl-0">
+ <header class="d-flex flex-wrap py-340 mb-8 border-bottom">
+ <div class="col-md-12 justify-content-start pb-5 float-start">
+ <a href="/">
+ <img class="" width="340" src="<?php echo $SERVICE_LOGO;?>" alt="<?php echo $SERVICE_NAME; ?>" />
+ </a>
+ </div>
+
+ <div class="col-md-12 bold navbar-expand-lg mt-5 ml-5 pl-5 bg-primary" data-bs-theme="dark">
+ <ul class="nav nav-pills justify-content-start fs-4">
+ <li class="nav-item"><a href="https://korpus.cz/icc" class="nav-link">Home</a></li>
+ <li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Sign up</a></li>
+ <li class="nav-item"><a href="#" class="nav-link">Query</a></li>
+ </ul>
+ </div>
+ </header>
+</div>
+
<h1>Sign up for
<?php echo $SERVICE_ACRONYM;?>
</h1>
@@ -117,10 +135,10 @@
<?php echo isset($_POST['eula']) ? 'checked' : '' ?>
value="eula">
<label class="form-check-label" for="eula">I have read and agree to to the
- <?php echo $SERVICE_NAME; ?> <a
+ <?php echo $SERVICE_ACRONYM; ?> <a
href="https://www2.ids-mannheim.de/cosmas2/projekt/register/license_agreement.html">End User License
Agreement</a> and will use
- <?php echo $SERVICE_NAME; ?> only for academic and non-commercial purposes.
+ <?php echo $SERVICE_ACRONYM; ?> only for academic and non-commercial purposes.
</label>
<div class="invalid-feedback">
You need to agree to the EULA in order to proceed.
@@ -136,7 +154,7 @@
value="privacy_policy">
<label class="form-check-label" for="privacy_policy">I have read and agree
to to the
- <?php echo $SERVICE_NAME; ?> <a
+ <?php echo $SERVICE_ACRONYM; ?> <a
href="https://www2.ids-mannheim.de/cosmas2/web-app/datenschutz.html">Privacy Policy</a>.
</label>
<div class="invalid-feedback">
@@ -163,7 +181,9 @@
</div>
<!-- Submit button -->
- <button name="type" value="register" type="submit" class="btn btn-primary float-right btn-md">Sign up</button>
+ <div class="container mt-2 text-right">
+ <button name="type" value="register" type="submit" class="btn btn-primary font-weight-bold fs-4">Sign up</button>
+ </div>
</form>
</div>