-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlayoutNoSidePanel.pug
80 lines (77 loc) · 4.23 KB
/
layoutNoSidePanel.pug
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
doctype html
html
head
meta(name="google-site-verification",content="uGXz2DRW1SUD8840jAOrmBaVIK9G2HO4OeWZ7VpbBao")
<!-- Global site tag (gtag.js) - Google Analytics -->
script(async,src="https://www.googletagmanager.com/gtag/js?id=UA-116969748-1")
title="sRNA Plant Portal"
meta(name="google-site-verification", content="uGXz2DRW1SUD8840jAOrmBaVIK9G2HO4OeWZ7VpbBao")
meta(name='google-signin-client_id', content='379853658866-r31skptbhf4jc8uqtrokkjveqbtu53g4.apps.googleusercontent.com')
link(rel="apple-touch-icon",sizes="180x180",href="/images/favicon/apple-touch-icon.png")
link(rel="icon",type="image/png" sizes="32x32",href="/images/favicon/favicon-32x32.png")
link(rel="icon",type="image/png" sizes="16x16",href="/images/favicon/favicon-16x16.png")
link(rel="manifest",href="/images/favicon/site.webmanifest")
link(rel='stylesheet', href='/stylesheets/fonts.css')
link(rel='stylesheet', href='/stylesheets/footer.css')
link(rel='stylesheet', href='/stylesheets/frontpage.css')
link(rel='stylesheet', href='/stylesheets/glyphicon.css')
link(rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css' integrity='sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh' crossorigin='anonymous')
link(rel='stylesheet', href='/stylesheets/style.css')
body
.header
a(href="/")
img(style="margin-left:30px;height:100px",src="/images/logo4.png")
a(target="blank_",href="https://biodata.pt/about_elixirpt")
img.tiny-logo-header(src="/images/elixir-logo-transparent-ultrasmall.png")
.menu
button.menu-item.menu-item1.login-btn.btn.btn-success(data-toggle="modal" data-target="#login-modal")
span.glyphicon.glyphicon-log-in
| login
button.menu-item.menu-item-right.menu-item1.logout-btn.btn.btn-success(onclick="signOut();")
span.glyphicon.glyphicon-log-out
| logout
a.menu-item.menu-item-right.profile-btn.btn.btn-success(href="/auth/profile")
span.glyphicon.glyphicon-user
| Profile
.container-fluid(style="margin:0px;padding:0px;")
.row.content-md-left(style="margin:0px")
.mainPanel(style="width:100%")
.content
block content
.footer
include includes/footer.pug
.modal#login-modal(tabindex='-1', role='dialog')
.modal-dialog(role='document')
.modal-content
.modal-header
h5.modal-title Login
button.close(type='button', data-dismiss='modal', aria-label='Close')
span(aria-hidden='true') ×
.modal-body
form#login-form(action="/auth/login",method="post")
.form-group
label(for='login-email') Email address
input#login-email.form-control(name="email",type='email', aria-describedby='emailHelp')
small#emailHelp.form-text.text-muted We'll never share your email with anyone else.
.form-group
label(for='login-password') Password (Not implemented!)
input#login-password.form-control(name="password",type='password')
.form-group.form-check
input#exampleCheck1.form-check-input(type='checkbox')
label.form-check-label(for='exampleCheck1',title="I do absolutly nothing!") Check me out (I thought you might like to play with me.)
button.btn.btn-success(type='submit',form="login-form")
span.glyphicon.glyphicon-log-in
| Login
button.btn.g-signin2(onclick="onSignIn()",data-theme='dark')
a.btn.btn-success(type="button",href="/auth/register")
span.glyphicon.glyphicon-edit
| Register
button.btn.btn-secondary(type='button', data-dismiss='modal')
span.glyphicon.glyphicon-remove
| Close
include includes/thirdpartyScripts.pug
script(src="/javascripts/auth/login.js")
script(src="/javascripts/buildingblocks.js")
script(src='https://apis.google.com/js/platform.js?onload=init', async='', defer='')
script(src="/javascripts/goAnalytics.js")
script(src="/javascripts/bootstrap3-typeahead.min.js")