@page "/Support"
@attribute [Authorize]
<h1>Support</h1>
<p>Skjema for innsending av supportsak til SuperOffice</p>
<script src='https://online2.superoffice.com/[redacted]' onload="superOfficeScriptLoaded()"></script>
<script>
function superOfficeScriptLoaded() {
$("#field_2").val("{{context.User.Identity?.Name}}");
}
</script>
@code {
}
@page "/Support"
@attribute [Authorize]
<h1>Support</h1>
<p>Skjema for innsending av supportsak til SuperOffice</p>
<script src='https://online2.superoffice.com/[redacted]' onload="superOfficeScriptLoaded()"></script>
<script>
function superOfficeScriptLoaded() {
$("#field_2").val("{{context.User.Identity?.Name}}");
}
</script>
@code {
}