auth: add JWT email/password auth + Login UI; security: kms rotate helper; preview sync endpoint + UI

This commit is contained in:
TLimoges33
2025-08-28 17:26:02 +00:00
parent 7702d3711b
commit a2b8950d9a
6 changed files with 205 additions and 1 deletions
+3 -1
View File
@@ -1,13 +1,15 @@
import React from 'react'
import Integrations from './Integrations'
import Guilds from './Guilds'
import Login from './Login'
export default function App(){
return (
<div style={{padding:20,fontFamily:'system-ui, sans-serif'}}>
<h1>LifeRPG Modern</h1>
<p>Welcome frontend scaffold. Connect to backend at <code>/api/v1</code>.</p>
<Integrations />
<Login />
<Integrations />
<Guilds />
</div>
)