blob: 8bbc3e02c34c3261ddc016f0e6815ed1a9ed3d93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
extends ./layout
block content
style
include ./stylesheets/authentication.css
form.form-horizontal(id='workspace-form', method='POST', action='/home')
input(type='hidden', name='_csrf', value=_csrf)
.overlay(id='overlay_workspaces')
h3.workspace-header Select A Workspace
ul.workspaceList
each val, index in ids
li.workspaceId(onclick='console.log("' + val + '")')= (index + 1) + ') ' + val
|