feature/1126 implement pkl config (#1161)

- **refactor: move marketing pages to**
- **feat: add role select input**
This commit is contained in:
Prad Nukala
2024-11-06 13:32:51 -05:00
committed by GitHub
parent 82ec2664f3
commit d8cb2cbbf6
54 changed files with 854 additions and 431 deletions
+23
View File
@@ -0,0 +1,23 @@
package views
import echo "github.com/labstack/echo/v4"
// CurrentView checks if the user is logged in.
templ CurrentView(c echo.Context) {
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h3 class="card-title">Current Account</h3>
</div>
<div class="card-body">
<p class="card-text">
<a href="/logout">Logout</a>
</p>
</div>
</div>
</div>
</div>
</div>
}