new transparent navbar include in login,signup,reset-password
This commit is contained in:
		
					parent
					
						
							
								652054d334
							
						
					
				
			
			
				commit
				
					
						eb1b3b6eb5
					
				
			
		
					 6 changed files with 191 additions and 79 deletions
				
			
		|  | @ -39,6 +39,30 @@ h6 { | |||
|     font-size: 14px; | ||||
| } | ||||
| 
 | ||||
| .navbar-transparent { | ||||
|     background: transparent; | ||||
|     border: none; | ||||
|     padding: 20px; | ||||
| } | ||||
| 
 | ||||
| .navbar-transparent .navbar-nav>li>a { | ||||
|     color: #fff; | ||||
|     cursor: pointer; | ||||
|     font-family: 'Lato-Regular', sans-serif; | ||||
| } | ||||
| .navbar-transparent .navbar-nav>li>a:hover { | ||||
|     color: #fff; | ||||
| } | ||||
| .navbar-transparent .navbar-nav>li>a:focus, .navbar-transparent .navbar-nav>li>a:hover { | ||||
|     color: #fff; | ||||
|     background-color: transparent; | ||||
| } | ||||
| 
 | ||||
| .navbar-transparent #logoWhite{ | ||||
|     display: block; | ||||
|     width: 220px; | ||||
| } | ||||
| 
 | ||||
| .lead { | ||||
|     font-size: 18px; | ||||
|     font-weight: 400; | ||||
|  |  | |||
|  | @ -48,78 +48,80 @@ | |||
| <body> | ||||
| 
 | ||||
| 
 | ||||
|     <!-- Navigation --> | ||||
|     {% block navbar %} | ||||
| 
 | ||||
|     <nav class="navbar navbar-default  navbar-fixed-top topnav" role="navigation"> | ||||
|         <div class="container topnav"> | ||||
|             <!-- Brand and toggle get grouped for better mobile display --> | ||||
|             <div class="navbar-header"> | ||||
|                 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||||
|                     <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 topnav" href="{% if site_url %}{{site_url}}{% else %}{{ request.session.hosting_url}}{% endif %}"><img src="{% static 'datacenterlight/img/logo_black.svg' %}"></a> | ||||
|             </div> | ||||
|             {% if request.user.is_authenticated %} | ||||
|             <!-- 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"> | ||||
|                         <li> | ||||
|                             <a href="{% url 'hosting:virtual_machines' %}"> | ||||
|                                 <i class="fa fa-server" aria-hidden="true"></i> {% trans "My Virtual Machines"%} | ||||
|                             </a> | ||||
|                         </li> | ||||
|                         <li> | ||||
|                             <a href="{% url 'hosting:orders' %}"> | ||||
|                                 <i class="fa fa-credit-card"></i> {% trans "My Orders"%} | ||||
|                             </a> | ||||
|                         </li> | ||||
|                         <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"> | ||||
|         <!-- Navigation --> | ||||
| 
 | ||||
|         <nav class="navbar navbar-default  navbar-fixed-top topnav" role="navigation"> | ||||
|             <div class="container topnav"> | ||||
|                 <!-- Brand and toggle get grouped for better mobile display --> | ||||
|                 <div class="navbar-header"> | ||||
|                     <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||||
|                         <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 topnav" href="{% if site_url %}{{site_url}}{% else %}{{ request.session.hosting_url}}{% endif %}"><img src="{% static 'datacenterlight/img/logo_black.svg' %}"></a> | ||||
|                 </div> | ||||
|                 {% if request.user.is_authenticated %} | ||||
|                 <!-- 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"> | ||||
|                             <li> | ||||
|                                 <a href="{% url 'hosting:ssh_keys' %}"> | ||||
|                                     <i class="fa fa-key"></i> {% trans "Keys"%} | ||||
|                                 <a href="{% url 'hosting:virtual_machines' %}"> | ||||
|                                     <i class="fa fa-server" aria-hidden="true"></i> {% trans "My Virtual Machines"%} | ||||
|                                 </a> | ||||
|                             </li> | ||||
|                             <li> | ||||
|                                 <a href="{% url 'hosting:notifications' %}"> | ||||
|                                     <i class="fa fa-bell"></i> {% trans "Notifications "%} | ||||
|                                 <a href="{% url 'hosting:orders' %}"> | ||||
|                                     <i class="fa fa-credit-card"></i> {% trans "My Orders"%} | ||||
|                                 </a> | ||||
|                             </li> | ||||
|                             <li><a href="{% url 'hosting:logout' %}"><i class="glyphicon glyphicon-lock"></i>{% trans "Logout"%} </a></li> | ||||
|                           </ul> | ||||
|                         </li> | ||||
|                         <!--  | ||||
|                         <li> | ||||
|                             <a href="{{ request.session.hosting_url}}#how">{% trans "How it works"%}</a> | ||||
|                         </li> | ||||
|                         <li> | ||||
|                             <a href="{{ request.session.hosting_url }}#your">{% trans "Your infrastructure"%}</a> | ||||
|                         </li> | ||||
|                        <li> | ||||
|                             <a href="{{ request.session.hosting_url }}#our">{% trans "Our inftrastructure"%}</a> | ||||
|                         </li> | ||||
|                         <li> | ||||
|                             <a href="{{ request.session.hosting_url }}#price">{% trans "Pricing" %}</a> | ||||
|                         </li> | ||||
|                         <li> | ||||
|                             <a href="{{ request.session.hosting_url }}#contact">{% trans "Contact"%}</a> | ||||
|                         </li>   | ||||
|                         <li> | ||||
|                             <a href="{% url 'hosting:login' %}?next={{request.current_path}}">{% trans "Login"%}</a> | ||||
|                         </li>  --> | ||||
|                 </ul> | ||||
|                             <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 'hosting:ssh_keys' %}"> | ||||
|                                         <i class="fa fa-key"></i> {% trans "Keys"%} | ||||
|                                     </a> | ||||
|                                 </li> | ||||
|                                 <li> | ||||
|                                     <a href="{% url 'hosting:notifications' %}"> | ||||
|                                         <i class="fa fa-bell"></i> {% trans "Notifications "%} | ||||
|                                     </a> | ||||
|                                 </li> | ||||
|                                 <li><a href="{% url 'hosting:logout' %}"><i class="glyphicon glyphicon-lock"></i>{% trans "Logout"%} </a></li> | ||||
|                               </ul> | ||||
|                             </li> | ||||
|                             <!-- | ||||
|                             <li> | ||||
|                                 <a href="{{ request.session.hosting_url}}#how">{% trans "How it works"%}</a> | ||||
|                             </li> | ||||
|                             <li> | ||||
|                                 <a href="{{ request.session.hosting_url }}#your">{% trans "Your infrastructure"%}</a> | ||||
|                             </li> | ||||
|                            <li> | ||||
|                                 <a href="{{ request.session.hosting_url }}#our">{% trans "Our inftrastructure"%}</a> | ||||
|                             </li> | ||||
|                             <li> | ||||
|                                 <a href="{{ request.session.hosting_url }}#price">{% trans "Pricing" %}</a> | ||||
|                             </li> | ||||
|                             <li> | ||||
|                                 <a href="{{ request.session.hosting_url }}#contact">{% trans "Contact"%}</a> | ||||
|                             </li> | ||||
|                             <li> | ||||
|                                 <a href="{% url 'hosting:login' %}?next={{request.current_path}}">{% trans "Login"%}</a> | ||||
|                             </li>  --> | ||||
|                     </ul> | ||||
|                 </div> | ||||
|                 {% endif %} | ||||
|                 <!-- /.navbar-collapse --> | ||||
|             </div> | ||||
|             {% endif %} | ||||
|             <!-- /.navbar-collapse --> | ||||
|         </div> | ||||
|         <!-- /.container --> | ||||
|     </nav> | ||||
| 
 | ||||
|             <!-- /.container --> | ||||
|         </nav> | ||||
|     {% endblock navbar %} | ||||
| 
 | ||||
| 
 | ||||
|     <div class="content-dashboard"> | ||||
|  |  | |||
							
								
								
									
										72
									
								
								hosting/templates/hosting/includes/_navbar_transparent.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								hosting/templates/hosting/includes/_navbar_transparent.html
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,72 @@ | |||
| {% load static i18n %} | ||||
| 
 | ||||
| 
 | ||||
| <nav class="navbar navbar-default  navbar-fixed-top topnav navbar-transparent" role="navigation"> | ||||
|     <div class="container topnav"> | ||||
|         <!-- Brand and toggle get grouped for better mobile display --> | ||||
|         <div class="navbar-header"> | ||||
|             <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||||
|                 <span class="sr-only">Toggle navigation</span> | ||||
|                 <span class="icon-bar"></span> | ||||
|                 <span class="icon-bar"></span> | ||||
|                 <span class="icon-bar"></span> | ||||
|             </button> | ||||
|             <a id="logoWhite" class="navbar-brand topnav" href="{% if site_url %}{{site_url}}{% else %}{{ request.session.hosting_url}}{% endif %}"><img src="{% static 'datacenterlight/img/logo_white.svg' %}"></a> | ||||
|         </div> | ||||
|         {% if request.user.is_authenticated %} | ||||
|         <!-- 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"> | ||||
|                     <li> | ||||
|                         <a href="{% url 'hosting:virtual_machines' %}"> | ||||
|                             <i class="fa fa-server" aria-hidden="true"></i> {% trans "My Virtual Machines"%} | ||||
|                         </a> | ||||
|                     </li> | ||||
|                     <li> | ||||
|                         <a href="{% url 'hosting:orders' %}"> | ||||
|                             <i class="fa fa-credit-card"></i> {% trans "My Orders"%} | ||||
|                         </a> | ||||
|                     </li> | ||||
|                     <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 'hosting:ssh_keys' %}"> | ||||
|                                 <i class="fa fa-key"></i> {% trans "Keys"%} | ||||
|                             </a> | ||||
|                         </li> | ||||
|                         <li> | ||||
|                             <a href="{% url 'hosting:notifications' %}"> | ||||
|                                 <i class="fa fa-bell"></i> {% trans "Notifications "%} | ||||
|                             </a> | ||||
|                         </li> | ||||
|                         <li><a href="{% url 'hosting:logout' %}"><i class="glyphicon glyphicon-lock"></i>{% trans "Logout"%} </a></li> | ||||
|                       </ul> | ||||
|                     </li> | ||||
|                     <!-- | ||||
|                     <li> | ||||
|                         <a href="{{ request.session.hosting_url}}#how">{% trans "How it works"%}</a> | ||||
|                     </li> | ||||
|                     <li> | ||||
|                         <a href="{{ request.session.hosting_url }}#your">{% trans "Your infrastructure"%}</a> | ||||
|                     </li> | ||||
|                    <li> | ||||
|                         <a href="{{ request.session.hosting_url }}#our">{% trans "Our inftrastructure"%}</a> | ||||
|                     </li> | ||||
|                     <li> | ||||
|                         <a href="{{ request.session.hosting_url }}#price">{% trans "Pricing" %}</a> | ||||
|                     </li> | ||||
|                     <li> | ||||
|                         <a href="{{ request.session.hosting_url }}#contact">{% trans "Contact"%}</a> | ||||
|                     </li> | ||||
|                     <li> | ||||
|                         <a href="{% url 'hosting:login' %}?next={{request.current_path}}">{% trans "Login"%}</a> | ||||
|                     </li>  --> | ||||
|             </ul> | ||||
|         </div> | ||||
|         {% endif %} | ||||
|         <!-- /.navbar-collapse --> | ||||
|     </div> | ||||
|     <!-- /.container --> | ||||
| </nav> | ||||
|  | @ -1,6 +1,11 @@ | |||
| {% extends "hosting/base_short.html" %} | ||||
| {% load i18n %} | ||||
| {% load staticfiles bootstrap3%} | ||||
| 
 | ||||
| {% block navbar %} | ||||
|     {% include  'hosting/includes/_navbar_transparent.html' %} | ||||
| {% endblock navbar %} | ||||
| 
 | ||||
| {% block content %} | ||||
| 
 | ||||
| <div class="auth-container"> | ||||
|  |  | |||
|  | @ -2,6 +2,11 @@ | |||
| {% load staticfiles bootstrap3%} | ||||
| {% load i18n %} | ||||
| 
 | ||||
| {% block navbar %} | ||||
|     {% include  'hosting/includes/_navbar_transparent.html' %} | ||||
| {% endblock navbar %} | ||||
| 
 | ||||
| 
 | ||||
| {% block content %} | ||||
| <div class="auth-container"> | ||||
|    <div class="auth-bg"></div> | ||||
|  |  | |||
|  | @ -1,6 +1,10 @@ | |||
| {% extends "hosting/base_short.html" %} | ||||
| {% load staticfiles bootstrap3 i18n %} | ||||
| 
 | ||||
| {% block navbar %} | ||||
|     {% include  'hosting/includes/_navbar_transparent.html' %} | ||||
| {% endblock navbar %} | ||||
| 
 | ||||
| {% block content %} | ||||
| <div class="auth-container auth-signup"> | ||||
|    <div class="auth-bg"></div> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue