2016-07-27 05:08:45 +00:00
|
|
|
{% load static bootstrap3 i18n %}
|
2016-07-19 06:07:49 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="author" content="">
|
|
|
|
|
2016-07-29 05:17:34 +00:00
|
|
|
<title>NOSYSTEMD</title>
|
2016-07-19 06:07:49 +00:00
|
|
|
|
2016-07-31 23:58:43 +00:00
|
|
|
|
|
|
|
|
2016-07-19 06:07:49 +00:00
|
|
|
<!-- Bootstrap Core CSS -->
|
|
|
|
<link href="{% static 'nosystemd/vendor/bootstrap/css/bootstrap.min.css' %}" rel="stylesheet">
|
|
|
|
|
|
|
|
<!-- Custom Fonts -->
|
|
|
|
<link href="{% static 'nosystemd/vendor/font-awesome/css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
|
|
|
|
|
|
|
|
<!-- Plugin CSS -->
|
|
|
|
<link href="{% static 'nosystemd/vendor/magnific-popup/magnific-popup.css' %}" rel="stylesheet">
|
|
|
|
|
|
|
|
<!-- Theme CSS -->
|
|
|
|
<link href="{% static 'nosystemd/css/creative.css' %}" rel="stylesheet">
|
|
|
|
|
2016-07-31 23:58:43 +00:00
|
|
|
<link href="{% static 'nosystemd/css/nosystemd.css' %}" rel="stylesheet">
|
|
|
|
|
|
|
|
|
2016-07-19 06:07:49 +00:00
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
|
|
<![endif]-->
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body id="page-top">
|
|
|
|
|
|
|
|
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- Brand and toggle get grouped for better mobile display -->
|
|
|
|
<div class="navbar-header">
|
|
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
|
|
|
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
|
|
|
|
</button>
|
2016-08-01 05:22:35 +00:00
|
|
|
|
2016-08-16 01:45:08 +00:00
|
|
|
<a class="navbar-brand page-scroll" href="{% url 'nosystemd:landing' %}">no more systemd</a>
|
2016-07-19 06:07:49 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Collect the nav links, forms, and other content for toggling -->
|
|
|
|
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
2016-07-31 23:58:43 +00:00
|
|
|
<!-- <li>
|
2016-07-19 06:07:49 +00:00
|
|
|
<a class="page-scroll" href="#about">About</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a class="page-scroll" href="#services">Services</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a class="page-scroll" href="#contact">Contact</a>
|
2016-07-31 23:58:43 +00:00
|
|
|
</li> -->
|
2016-07-27 05:08:45 +00:00
|
|
|
{% if request.user.is_authenticated %}
|
2016-07-31 23:58:43 +00:00
|
|
|
<li>
|
|
|
|
<a href="{% url 'nosystemd:donations' %}"><i class="fa fa-heart-o" aria-hidden="true"></i> {% trans "My Donations"%} </a>
|
|
|
|
</li>
|
2016-07-27 05:08:45 +00:00
|
|
|
<li class="dropdown">
|
|
|
|
<a class="dropdown-toggle" role="button" data-toggle="dropdown" href="#">
|
|
|
|
<i class="glyphicon glyphicon-user"></i> {{request.user.name}} <span class="caret"></span></a>
|
|
|
|
<ul id="g-account-menu" class="dropdown-menu" role="menu">
|
|
|
|
<li><a href="{% url 'nosystemd:logout' %}"><i class="glyphicon glyphicon-lock"></i> {% trans "Logout"%} </a></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li>
|
|
|
|
<a class="page-scroll" href="{% url 'nosystemd:login' %}">Login</a>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2016-07-19 06:07:49 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- /.navbar-collapse -->
|
|
|
|
</div>
|
|
|
|
<!-- /.container-fluid -->
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="{% static 'nosystemd/vendor/jquery/jquery.min.js' %}"></script>
|
|
|
|
|
|
|
|
<!-- Bootstrap Core JavaScript -->
|
|
|
|
<script src="{% static 'nosystemd/vendor/bootstrap/js/bootstrap.min.js' %}"></script>
|
|
|
|
|
|
|
|
<!-- Plugin JavaScript -->
|
|
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
|
|
|
|
<script src="{% static 'nosystemd/vendor/scrollreveal/scrollreveal.min.js' %}"></script>
|
|
|
|
<script src="{% static 'nosystemd/vendor/magnific-popup/jquery.magnific-popup.min.js' %}"></script>
|
|
|
|
|
|
|
|
<!-- Theme JavaScript -->
|
|
|
|
<script src="{% static 'nosystemd/js/creative.min.js' %}"></script>
|
|
|
|
|
Created signup view. Added login after signup.Added signup url to nosystem app urls.py. Added logout view, Added logout button on nabber, Added password reset form, Added password view , Added password reset html, Added password reset email for nosystemd app. Added confirm_reset_password.html, Added confirm_ reset password view, Added confirm reset password form, Fixed reset password token generation, Started donation view, Added donation view, Added donation.html, Added donation form, Adding donation.js lib in order to capture stripe payments for nosystem app.
2016-07-22 06:24:32 +00:00
|
|
|
<!-- Stripe Lib -->
|
|
|
|
<script type="text/javascript" src="//js.stripe.com/v2/"></script>
|
|
|
|
|
|
|
|
<!-- Proccess payment lib -->
|
2016-07-27 05:08:45 +00:00
|
|
|
<script type="text/javascript" src="{% static 'nosystemd/js/donation.js' %}"></script>
|
Created signup view. Added login after signup.Added signup url to nosystem app urls.py. Added logout view, Added logout button on nabber, Added password reset form, Added password view , Added password reset html, Added password reset email for nosystemd app. Added confirm_reset_password.html, Added confirm_ reset password view, Added confirm reset password form, Fixed reset password token generation, Started donation view, Added donation view, Added donation.html, Added donation form, Adding donation.js lib in order to capture stripe payments for nosystem app.
2016-07-22 06:24:32 +00:00
|
|
|
|
2016-07-19 06:07:49 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|