forked from Pilarbrist/full-stack-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 827 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Mean Exchange - Login</title>
<script src="bower_components/react/build/react.js"></script>
<script src="bower_components/react-bootstrap/react-bootstrap.js"></script>
<link rel="stylesheet" href="css/bootstrap.css"/>
<!-- <link rel="stylesheet" href="css/bootstrap-theme.css"/> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/css/material-fullpalette.min.css"/>
<link rel="stylesheet" href="css/custom.css"/>
</head>
<body>
<div id="app"></div>
<script type="application/javascript">
var Grid = ReactBootstrap.Grid,
Row = ReactBootstrap.Row,
Col = ReactBootstrap.Col,
Button = ReactBootstrap.Button;
</script>
<script src="build/login.js"></script>
</body>
</html>