mock-login.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <ion-header>
  2. <ion-icon name="close" style="margin-top: 11px; margin-left: 9px;"></ion-icon>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  3. <ion-icon name="lock"></ion-icon>&nbsp;
  4. <small><b>api.twitter.com</b></small>
  5. <ion-icon name="more" class="icon-more" style="float: right; margin-right: 31px; margin-top: 11px;"></ion-icon>
  6. </ion-header>
  7. <ion-content>
  8. <div class="Register-twitter">
  9. <ion-icon name="logo-twitter" class="icon-twitterlogo" style="color: #1DA1F2; size: 5px; margin-top: 11px; margin-left: 11px;"></ion-icon>
  10. <small class="register">Register on twitter ></small>
  11. </div>
  12. <div style="margin-left: 15px;">
  13. <h1>HOSN Twitter(TU Darmstadt) grant access to your account?</h1>
  14. </div>
  15. <div class="twitter-api-logo">
  16. <img src="assets/imgs/twitter-api.PNG" alt="Logo">
  17. <div class="second_header"><span class="sh_header">HOSN Twitter(TU Darmstadt)</span>
  18. www.tk.informatik.tu-darmstadt.de/de/telecooperation-group/</div>
  19. </div>
  20. <form [formGroup]="loginForm" class="login" (ngSubmit)="onSubmit()">
  21. <div class="form-group">
  22. <div *ngIf="submitted && f.username.errors" class="invalid-feedback">
  23. <div *ngIf="f.username.errors.required">Username is required
  24. </div>
  25. </div>
  26. <input type="text" formControlName="username" placeholder="Nutzername oder E-mail" class="form-control username1" [ngClass]="{ 'is-invalid': submitted && f.username.errors }" />
  27. </div>
  28. <div class="form-group">
  29. <div *ngIf="submitted && f.password.errors" class="invalid-feedback">
  30. <div *ngIf="f.password.errors.required">Password is required</div>
  31. </div>
  32. <input type="password" formControlName="password" placeholder="Passwort" class="form-control password1" [ngClass]="{ 'is-invalid': submitted && f.password.errors }" />
  33. </div>
  34. <div>
  35. <input type="checkbox" name="remember" value="Bike"> Remember me . <span class="forgot_pass" style="color: #1DA1F2;">Forgot your password?</span>
  36. </div>
  37. <div class="form-group">
  38. <button [disabled]="loading" class="btn btn-primary login-btn">Log In</button>
  39. <button [disabled]="loading" class="btn btn-primary close-btn">Cancel</button>
  40. </div>
  41. </form>
  42. <div>
  43. <p style="color: #1DA1F2; margin-left: 15px;">This application can:</p>
  44. <ul>
  45. <li>See tweets (including protected tweets) from your timeline, as well as your lists and collections.</li>
  46. <li>See your Twitter profile information and account settings.</li>
  47. <li>See accounts that you are following or that you have muted and blocked.</li>
  48. <li>Follow and unroll accounts for you.</li>
  49. <li>Update your profile and account settings.</li>
  50. <li>Post and delete tweets for you, and interact with tweets that others have posted for you (e.g., like and un-like, like, reply to a tweet, or send a retweet).</li>
  51. <li>Create, manage and delete lists and collections for you.</li>
  52. <li>Mute, block and report accounts for you.</li>
  53. <li>You can find out more about permissions for third-party apps in the Help Center.</li>
  54. </ul>
  55. </div>
  56. </ion-content>