Skip to content
Snippets Groups Projects

Feature/comp 223 login flow

Merged Bjarke Madsen requested to merge feature/COMP-223-Login-Flow into develop
16 files
+ 246
35
Compare changes
  • Side-by-side
  • Inline
Files
16
import React, { ReactElement } from "react";
import React, { ReactElement } from "react";
import { Container, Row } from "react-bootstrap";
import { Col, Container, Row } from "react-bootstrap";
 
import Login from "../../shared/Login";
import GeantLogo from "../../images/geant_logo_f2020_new.svg";
import GeantLogo from "../../images/geant_logo_f2020_new.svg";
/**
/**
@@ -14,26 +15,36 @@ function ExternalPageNavBar(): ReactElement {
@@ -14,26 +15,36 @@ function ExternalPageNavBar(): ReactElement {
<Container>
<Container>
<Row>
<Row>
<nav>
<Col xs={10}>
<a href="https://geant.org/"><img src={GeantLogo} /></a>
<div className="nav-wrapper">
 
<nav className="header-nav">
 
<a href="https://geant.org/"><img src={GeantLogo} /></a>
<ul>
<ul>
<li><a href="https://network.geant.org/">NETWORK</a></li>
<li><a className="nav-link-entry" href="https://network.geant.org/">NETWORK</a></li>
<li><a href="https://geant.org/services/">SERVICES</a></li>
<li><a className="nav-link-entry" href="https://geant.org/services/">SERVICES</a></li>
<li><a href="https://community.geant.org/">COMMUNITY</a></li>
<li><a className="nav-link-entry" href="https://community.geant.org/">COMMUNITY</a></li>
<li><a href="https://tnc23.geant.org/">TNC</a></li>
<li><a className="nav-link-entry" href="https://tnc23.geant.org/">TNC</a></li>
<li><a href="https://geant.org/projects/">PROJECTS</a></li>
<li><a className="nav-link-entry" href="https://geant.org/projects/">PROJECTS</a></li>
<li><a href="https://connect.geant.org/">CONNECT</a></li>
<li><a className="nav-link-entry" href="https://connect.geant.org/">CONNECT</a></li>
<li><a href="https://impact.geant.org/">IMPACT</a></li>
<li><a className="nav-link-entry" href="https://impact.geant.org/">IMPACT</a></li>
<li><a href="https://careers.geant.org/">CAREERS</a></li>
<li><a className="nav-link-entry" href="https://careers.geant.org/">CAREERS</a></li>
<li><a href="https://about.geant.org/">ABOUT</a></li>
<li><a className="nav-link-entry" href="https://about.geant.org/">ABOUT</a></li>
<li><a href="https://connect.geant.org/community-news">NEWS</a></li>
<li><a className="nav-link-entry" href="https://connect.geant.org/community-news">NEWS</a></li>
<li><a href="https://resources.geant.org/">RESOURCES</a></li>
<li><a className="nav-link-entry" href="https://resources.geant.org/">RESOURCES</a></li>
</ul>
</ul>
</nav>
 
</nav>
 
</div>
 
 
</Col>
 
 
<Col align="right">
 
<Login />
 
</Col>
</Row>
</Row>
</Container>
</Container>
</div>
</div >
);
);
}
}
Loading