Guest User

Untitled

a guest
May 20th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <div class="form-group"> <!-- Name question on the form -->
  2. <div class="row">
  3. <div class="col-12">
  4. <label>
  5. Under what name do you want to save this form?
  6. </label>
  7. </div>
  8. </div>
  9. <div class="input-group">
  10. <input class="form-control" type="text" [(ngModel)]="cons.name" [ngModelOptions]="{standalone: true}"
  11. mdTooltip=
  12. 'This is the name that the form will be saved under "Saved Forms" on your dashboard'
  13. mdTooltipPosition="right"
  14. autofocus/>
  15. </div>
  16. </div>
  17.  
  18. * {
  19. user-select: none;
  20. }
  21.  
  22. *:not(input) {
  23. user-select: none;
  24. }
Add Comment
Please, Sign In to add comment