This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="stepper-container"> | |
<hr /> | |
<div class="stepper"> | |
<div class="step"> | |
<label class="step-number"> | |
<span>1</span> | |
</label> | |
<label>Login</label> | |
</div> | |
<div class="step"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.stepper-container { | |
position: relative; | |
height: 50px; | |
} | |
.stepper-container hr { | |
position: absolute; | |
width: 83%; | |
top: 5px; | |
left: 8%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
"use strict"; | |
var Stepper = function (options) { | |
var defaults = { | |
steps: [], | |
currentStep: 0, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""Main module.""" | |
import os | |
import logging.config | |
import bottle | |
from pg_simple.pool import config_pool | |
import web.assets | |
from services import * | |
currentdir = os.path.dirname(__file__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.tdlabs.idm.keycloak.ext.authentication; | |
import static java.time.LocalDateTime.now; | |
import static java.util.Arrays.asList; | |
import java.util.List; | |
import org.jboss.logging.Logger; | |
import org.keycloak.Config.Scope; | |
import org.keycloak.authentication.RequiredActionContext; |