-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp.html
89 lines (78 loc) · 3.41 KB
/
wp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html>
<head>
<title>Pizza 42 Service</title>
<!--link media="all" type="text/css" rel="stylesheet" href="assets/default.css"-->
<!--link media="all" type="text/css" rel="stylesheet" href="assets/user.css"-->
<!--link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css"-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="sb-site" class="full-height">
<div class="webshop-head-container container hidden-xs">
<div class="row">
<div class="col-xs-12 col-sm-6">
<div>
<img src="assets/pizza-42.png">
</div>
</div>
</div>
</div>
<div class="container webshop-outmost-container">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-primary panel-login">
<div class="panel-heading">
<div class="row">
<div class="col-sm-6"></div>
<div class="col-sm-6">
Ben je nieuw hier?
</div>
</div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6 divider-right">
<div style="margin-top: 10px"></div>
<button class="btn btn-primary" id="btn-home-view">Home</button>
<button class="btn btn-primary" id="btn-profile-view">Profile</button>
<button class="btn btn-primary" id="qsLoginBtn">Login</button>
<button class="btn btn-primary" id="qsOrderBtn">Order</button>
<button class="btn btn-primary" id="qsLogoutBtn">Logout</button>
<!--/div>
<div class="row"-->
<div class="panel-login-register-text">Meld u aan en profiteer van de voordelen! </div>
<div class="container">
<!-- home view -->
<div id="home-view">
<h4></h4>
</div>
<!-- profile view -->
<div id="profile-view">
<h3>Profile</h3>
<div>
<img class="avatar" alt="avatar">
<div>
<label><i class="glyphicon glyphicon-user"></i>Nickname</label>
<h3 class="nickname"></h3>
</div>
<pre class="full-profile"></pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--script type="text/javascript" src="https://cdn.ywxi.net/js/1.js" async></script>
<script src="https://www.pizzaservice.nl/assets/cache/casset-40eadce9b69e84579d76ff2cad6d305d-default.js"></script-->
<script type="text/javascript" src="node_modules/auth0-js/build/auth0.js"></script>
<script type="text/javascript" src="auth.js"></script>
<script type="text/javascript" src="config.js"></script>
</body>
</html>