Commit 41a965fc authored by D.H.D. Nguyen's avatar D.H.D. Nguyen
Browse files

update templates

parent 7371642e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@
{% endblock %}

{% block navbar %}
<div class="navbar-nav-scroll">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none; padding: 0; padding-left: 76%;">
<div class="navbar-nav-scroll" style=" padding-left: 75%;">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none;">
    <li class="nav-item">
      <a class="nav-link col-xs-4"  href="{{url_for('start')}}" style="font-size: 20px; color: dodgerblue"> Home </a>
      <a class="nav-link active col-xs-4"  href="{{url_for('user.main')}}" style="font-size: 20px; color: dodgerblue">  User </a>
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@


{% block navbar %}
<div class="navbar-nav-scroll">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none; padding: 0; padding-left: 76%;">
<div class="navbar-nav-scroll" style=" padding-left: 75%;">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none;">
  	<li class="nav-item">
	  <a class="nav-link col-xs-4"  href="{{url_for('start')}}" style="font-size: 20px; color: dodgerblue"> Home </a>
	</li>
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
{% block title %} {{ project.name.upper() }} {% endblock %}

{% block navbar %}
<div class="navbar-nav-scroll">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none; padding: 0; padding-left: 76%;">
<div class="navbar-nav-scroll" style=" padding-left: 75%;">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none;">
  	<li class="nav-item">
	  <a class="nav-link col-xs-4"  href="{{url_for('start')}}" style="font-size: 20px; color: dodgerblue"> Home </a>
	  <a class="nav-link active col-xs-4"  href="{{url_for('user.main')}}" style="font-size: 20px; color: dodgerblue">  User </a>
+4 −3
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
{% block title %} User - Homepage {% endblock %}

{% block navbar %}
<div class="navbar-nav-scroll">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none; position: absolute; top: 0; right:30pt">
<div class="navbar-nav-scroll" style=" padding-left: 75%;">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none;">
  	<li class="nav-item">
	  <a class="nav-link col-xs-4"  href="{{url_for('start')}}" style="font-size: 20px; color: green"> Home </a>
	  <a class="nav-link active col-xs-4"  href="{{url_for('user.main')}}" style="font-size: 20px; color: green"> <b> User</b> </a>
@@ -18,7 +18,7 @@
{% endblock %}

{% block content %}
<div style="position: absolute; top: 7%">
<div>
  <div class="form-group col-md-12">
	<div class="alert alert-success" role="alert">
	  <h2 class="alert-heading"><strong>Welcome to User Homepage !</strong></h2>
@@ -77,6 +77,7 @@
{% endblock %}

{% block scripts %}
	{{ super() }}
	<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  	<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
  	<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
+2 −2
Original line number Diff line number Diff line
@@ -6,8 +6,8 @@
{% block title %} LOGIN {% endblock %}

{% block navbar %}
<div class="navbar-nav-scroll">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none; position: absolute; top: 0; right:30pt">
<div class="navbar-nav-scroll" style=" padding-left: 75%;">
  <ul class="navbar-nav bd-navbar-nav flex-row" style="list-style-type:none;">
    <li class="nav-item">
      <a class="nav-link col-xs-4"  href="{{url_for('start')}}" style="font-size: 20px; color: green"> Home </a>
      <a class="nav-link active col-xs-4"  href="{{url_for('user.main')}}" style="font-size: 20px; color: green"> <b> User</b> </a>
Loading