forked from gawdsnitkkr/Techspardha-18-prime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31acea5
commit 085dab2
Showing
8 changed files
with
178 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#onBoarding-page { | ||
min-height: 100vh; | ||
margin: 0px; | ||
} | ||
.control-width { | ||
max-width: 50%; | ||
margin-left: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>On boarding</title> | ||
<meta charset="utf-8"> | ||
<link rel="stylesheet" type="text/css" href="bootstrap.min.css"> | ||
<link rel="stylesheet" type="text/css" href="onBoarding.css"> | ||
</head> | ||
<body> | ||
|
||
<div class="jumbotron" id="onBoarding-page"> | ||
<div class="text-center"> | ||
<img src="startup.png"/> | ||
</div> | ||
<h1 class="display-4 text-center">Welcome aboard</h1> | ||
<h1 class="text-center mb-5">Techspardha'18 Prime</h1> | ||
<h5 class="text-center">To continue we need a few more details about you...</h5> | ||
|
||
<div class="container text-center"> | ||
<hr class="my-4"> | ||
|
||
<div class="row justify-content-md-center"> | ||
<div class="col-sm-4"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" id="user-college" aria-describedby="collegeName" placeholder="College name"> | ||
<label for="user-college">Your college</label> | ||
</div> | ||
</div> | ||
<div class="col-sm-4"> | ||
<select class="form-control" id="user-year"> | ||
<option>First</option> | ||
<option>Second</option> | ||
<option>Third</option> | ||
<option>Fourth</option> | ||
</select> | ||
<label for="user-year">Your year</label> | ||
</div> | ||
</div> | ||
|
||
<div class="row justify-content-md-center"> | ||
<div class="col-sm-4"> | ||
<button type="button" class="btn btn-danger">Continue</button> | ||
</div> | ||
</div> | ||
|
||
<hr class="my-4"> | ||
</div> | ||
|
||
</div> | ||
|
||
</body> | ||
<script src="jquery.min.js"></script> | ||
<script src="bootstrap.min.js"></script> | ||
<script src="onBoarding.js"></script> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
|
||
import React from 'react'; | ||
import { Switch, Route } from 'react-router-dom'; | ||
import Nav from './components/Nav/Nav'; | ||
import Desktop from './components/Desktop/Desktop'; | ||
import Events from './components/Events/Events'; | ||
import Guests from './components/Guests/Guests'; | ||
import Contact from './components/ContactUs/ContactUs'; | ||
import AboutUs from './components/AboutUs/AboutUs'; | ||
import Sponsers from './components/Sponsers/Sponsers'; | ||
import User from './components/User/User'; | ||
import DOC from './components/Doc/Doc'; | ||
|
||
const LoggedIn = () => ( | ||
<div className="loggedIn"> | ||
<Nav /> | ||
<Route exact path="/" component={Desktop} /> | ||
<Route path="/events" component={Events} /> | ||
<Route path="/guestLectures" component={Guests} /> | ||
<Route path="/contactUs" component={Contact} /> | ||
<Route path="/aboutUs" component={AboutUs} /> | ||
<Route path="/sponsers" component={Sponsers} /> | ||
<Route path="/user" component={User} /> | ||
<DOC /> | ||
</div> | ||
); | ||
|
||
export default LoggedIn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#onBoarding-page { | ||
min-height: 100vh; | ||
margin: 0px; | ||
} | ||
.control-width { | ||
max-width: 50%; | ||
margin-left: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import React from 'react'; | ||
import './OnBoarding.css'; | ||
|
||
const OnBoarding = () => ( | ||
<div className="jumbotron" id="onBoarding-page"> | ||
<div className="text-center"> | ||
<img src="/images/startup.png" /> | ||
</div> | ||
<h1 className="display-4 text-center"> | ||
Welcome aboard | ||
</h1> | ||
<h1 className="text-center mb-5"> | ||
Techspardha'18 Prime | ||
</h1> | ||
<h5 className="text-center"> | ||
To continue we need a few more details about you... | ||
</h5> | ||
|
||
<div className="container text-center"> | ||
<hr className="my-4" /> | ||
|
||
<div className="row justify-content-md-center"> | ||
<div className="col-sm-3"> | ||
<div className="form-group"> | ||
<input type="text" className="form-control" id="user-college" aria-describedby="collegeName" placeholder="College name" /> | ||
<label htmlFor="user-college"> | ||
Your college | ||
</label> | ||
</div> | ||
</div> | ||
<div className="col-sm-3"> | ||
<div className="form-group"> | ||
<input type="number" className="form-control" id="user-mobile" aria-describedby="collegeName" placeholder="Mobile Number" /> | ||
<label htmlFor="user-mobile"> | ||
Mobile Number | ||
</label> | ||
</div> | ||
</div> | ||
<div className="col-sm-3"> | ||
<select className="form-control" id="user-year"> | ||
<option> | ||
First | ||
</option> | ||
<option> | ||
Second | ||
</option> | ||
<option> | ||
Third | ||
</option> | ||
<option> | ||
Fourth | ||
</option> | ||
</select> | ||
<label htmlFor="user-year"> | ||
Your year | ||
</label> | ||
</div> | ||
</div> | ||
|
||
<div className="row justify-content-md-center"> | ||
<div className="col-sm-4"> | ||
<button type="button" className="btn btn-danger"> | ||
Continue | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<hr className="my-4" /> | ||
</div> | ||
|
||
</div> | ||
); | ||
|
||
export default OnBoarding; |