123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>fetch tags</title>
- <style nonce="poes">
- * { margin: 0; padding: 0; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 14px;}
- .container { width: 450px; margin: 0px auto;}
- a { text-decoration: none; color: #3c096c }
- a:hover { text-decoration: underline;}
- .list { list-style-type: none; margin: 0px;}
- span { padding-right: 6px; text-transform: capitalize; display: inline-block;}
- .vhi { visibility: hidden; margin:0px}
- .sembunyi { visibility: hidden; height: 6px}
- h3.sembunyi + span::first-letter { font-weight: bold; color: #3c096c}
- </style>
- </head>
- <body>
- <div class="container">
- <p></p>
- <p>Role : {{ user.role }}</p>
- <p>{{# if_eq origin '/'}}
- Origin : {{ origin }}
- {{/if_eq}}</p>
- </div>
- </body>
- </html>
|