35 lines
955 B
Plaintext
Raw Normal View History

2025-02-21 18:42:56 +01:00
package component
import common "forge.cadoles.com/wpetit/clearcase/internal/http/handler/webui/common/component"
type LoginPageVModel struct {
Providers []ProviderVModel
}
type ProviderVModel struct {
ID string
Label string
Icon string
}
templ LoginPage(vmodel LoginPageVModel) {
@common.Page() {
<div class="is-flex is-justify-content-center is-align-items-center is-fullheight">
<nav class="panel is-link" style="min-width: 33%">
<p class="panel-heading">
2025-02-22 09:42:15 +01:00
<span class="title">ClearCase</span>
2025-02-22 16:28:46 +01:00
<span>&nbsp;- Choisissez votre plateforme</span>
2025-02-21 18:42:56 +01:00
</p>
for _, provider := range vmodel.Providers {
2025-02-22 09:42:15 +01:00
<a class="panel-block py-5" href={ templ.URL("/auth/providers/" + provider.ID) } hx-boost="false">
2025-02-21 18:42:56 +01:00
<span class="panel-icon is-size-3">
<i class={ "fab", provider.Icon } aria-hidden="true"></i>
</span>
2025-02-22 09:42:15 +01:00
<span class="is-size-5">{ provider.Label }</span>
2025-02-21 18:42:56 +01:00
</a>
}
</nav>
</div>
}
}