Angular LMS app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 

17 行
565 B

  1. <section class="alert-box">
  2. <header>
  3. <svg-icon [applyClass]="true" class="icon" src="assets/custom-icons/warning.svg"></svg-icon>
  4. <h5> Delete Media </h5>
  5. </header>
  6. <p>
  7. Are you sure you want to delete this?
  8. </p>
  9. <p>
  10. <strong> Note: </strong> You can always download it back if you would like to.
  11. </p>
  12. <div class="action-buttons">
  13. <button (click)="closePopup('false')"> Cancel </button>
  14. <button class="confirmation-button" (click)="closePopup('true')"> Delete </button>
  15. </div>
  16. </section>