-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): Improve Moss form information and add quick email link
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,21 @@ | |
<input type="number" class="form-control" id="mossIdInput" placeholder="123456789" | ||
[(ngModel)]="classroom.mossId" (change)="context.saveDraft()"> | ||
<div class="form-text"> | ||
Your Moss User ID. See "Registering for Moss" in the Moss documentation to obtain it. | ||
Your Moss User ID. | ||
See "Registering for Moss" in the Moss documentation to obtain it. | ||
Or | ||
<a [href]="'mailto:[email protected]?subject=Moss%20User%20ID%20Request&body=registeruser%0Amail%20' + email">send an email</a> | ||
to request one. | ||
</div> | ||
</div> | ||
<div class="mb-3"> | ||
<label class="form-label" for="mossIdInput">Moss Language</label> | ||
<label class="form-label" for="mossLanguageInput">Moss Language</label> | ||
<select class="form-control" id="mossLanguageInput" [(ngModel)]="classroom.mossLanguage" (change)="context.saveDraft()"> | ||
<option *ngFor="let lang of mossLanguages | keyvalue" [value]="lang.key">{{ lang.value }}</option> | ||
</select> | ||
<div class="form-text"> | ||
Language to use for Moss duplicate analysis. | ||
See our list of <a href="https://github.com/fujaba/fulib.org/issues/326" target="_blank">supported languages</a> | ||
if you need a Moss-supported language that is not listed here. | ||
</div> | ||
</div> |
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