20 lines
764 B
Plaintext
20 lines
764 B
Plaintext
component Settings(user *arn.User)
|
|
h2.page-title Settings
|
|
.widgets
|
|
.widget
|
|
h3.widget-title
|
|
Icon("user")
|
|
span Personal
|
|
|
|
InputText("nick", user.Nick, "Username", "Your username on notify.moe")
|
|
InputText("tagline", user.Tagline, "Tagline", "Text that appears below your username")
|
|
InputText("website", user.Website, "Website", "Your homepage")
|
|
|
|
.widget
|
|
h3.widget-title
|
|
Icon("cubes")
|
|
span Accounts
|
|
|
|
InputText("accounts.anilist.nick", user.Accounts.AniList.Nick, "AniList", "Your username on anilist.co")
|
|
InputText("accounts.myanimelist.nick", user.Accounts.MyAnimeList.Nick, "MyAnimeList", "Your username on myanimelist.net")
|
|
InputText("accounts.kitsu.nick", user.Accounts.Kitsu.Nick, "Kitsu", "Your username on kitsu.io") |