blob: 39eebb6dc26405fab41b0b93c7ea24f7140abf33 (
plain)
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
|
{% extends "base/dashboard/landing.html" %}
{% block about_us %}
<p>The Shared Community Lab at the IOL aims to help development and testing of LFN projects by hosting hardware and providing access to the community.</p>
<p>To get started, you can request access to a server at the right.</p>
{% endblock about_us %}
{% block btnGrp %}
<style>
.btnAkr {
color: #fff;
background-color: #39c0c0;
}
.btnAkr:hover{
color: #fff;
background-color: #259a9a;
}
</style>
<p>To get started, book a pod below:</p>
<a class="btn btnAkr btn-lg d-flex flex-column justify-content-center align-content-center border text-white p-4" href="/booking/quick/">Book a Pod</a>
{% endblock btnGrp %}
{% block biglogin %}
<h4 class="text-center">
To get started, please log in with <a href="{% url 'oidc_authentication_init' %}"> Linux Foundation ID</a>
</h4>
{% endblock biglogin %}
{% block returningUsers %}
{% endblock returningUsers %}
|