mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 02:17:05 +00:00
rename the sso to auth package
This commit is contained in:
30
_examples/mvc/websocket-auth/views/layouts/main.html
Normal file
30
_examples/mvc/websocket-auth/views/layouts/main.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ if .Title }}{{ .Title }}{{ else }}Default Main Title{{ end }}</title>
|
||||
</head>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
flex-direction: column;
|
||||
}
|
||||
main {
|
||||
display: block;
|
||||
flex: 1 0 auto;
|
||||
}
|
||||
.container {
|
||||
max-width: 500px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div class="container">
|
||||
<main>{{ template "content" . }}</main>
|
||||
<footer style="position: fixed; bottom: 0; width: 100%;">{{ partial "partials/footer" .}}</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
1
_examples/mvc/websocket-auth/views/partials/footer.html
Normal file
1
_examples/mvc/websocket-auth/views/partials/footer.html
Normal file
@@ -0,0 +1 @@
|
||||
<i>Iris Web Framework © 2022</i>
|
||||
9
_examples/mvc/websocket-auth/views/signin.html
Normal file
9
_examples/mvc/websocket-auth/views/signin.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="user_signin">
|
||||
<form action="" method="post">
|
||||
<label for="username">Email:</label>
|
||||
<input name="username" type="email" />
|
||||
<label for="password">Password:</label>
|
||||
<input name="password" type="password" />
|
||||
<input type="submit" value="Sign in" />
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user