-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9a3bd9
commit fa0b8c4
Showing
9 changed files
with
242 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,37 @@ | ||
{{ template "header" }} | ||
{{ if ne .ErrorTitle "" }} | ||
<h2>An error has occurred</h2> | ||
<h2><span class="material-symbols-outlined error">error</span>An Error has Occurred</h2> | ||
<h3>Error Type: {{ .ErrorTitle }}</h3> | ||
<h3>Error Description: {{ .ErrorDescription }}</h3> | ||
{{ else if eq .LoginType "AM" }} | ||
|
||
You have successfully logged in as: | ||
<br/> | ||
<br/> | ||
<b>Account Name:</b> {{ .Name }}<br/> | ||
<b>Account ID:</b> {{ .Id }}<br/> | ||
|
||
<h2><span class="material-symbols-outlined success">check_circle</span> Authentication Complete</h2> | ||
You are now authenticated as: | ||
<table> | ||
<tr> | ||
<th>Account Name</th> | ||
<th>Account ID</th> | ||
</tr> | ||
<tr> | ||
<td>{{ .Name }}</td> | ||
<td>{{ .Id }}</td> | ||
</tr> | ||
</table> | ||
<h3>You may now close this window.</h3> | ||
{{ else if eq .LoginType "Customers" }} | ||
|
||
<h2><span class="material-symbols-outlined success">check_circle</span> Authentication Complete</h2> | ||
You are now authenticated as: | ||
<table> | ||
<tr> | ||
<th>Customer Name</th> | ||
<th>Customer ID</th> | ||
</tr> | ||
<tr> | ||
<td>{{ .Name }}</td> | ||
<td>{{ .Id }}</td> | ||
</tr> | ||
</table> | ||
<h3>You may now close this window.</h3> | ||
{{ end }} | ||
{{ template "footer" }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.