a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[backend/razor] Add warning about iceshrimp scope to OAuth page

authored by

pancakes and committed by
Laura Hausmann
674d34ab 7699b5e9

+13
+7
Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml
··· 17 17 } 18 18 </ul> 19 19 20 + @if (Model.Scopes.Contains("iceshrimp")) 21 + { 22 + <div class="iceshrimp_scope_warning"> 23 + This app can use the Iceshrimp API as well as the Mastodon API, giving it full access to your account. 24 + </div> 25 + } 26 + 20 27 @if (Model.TwoFactorFormData is { } data) 21 28 { 22 29 <form method="post">
+6
Iceshrimp.Backend/Pages/OAuth/Authorize.cshtml.css
··· 2 2 color: #9a92ff; 3 3 } 4 4 5 + .iceshrimp_scope_warning { 6 + margin-bottom: 1rem; 7 + color: orangered; 8 + font-weight: bold; 9 + } 10 + 5 11 .margin-bottom-5px { 6 12 margin-bottom: 5px; 7 13 }