Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.30 KB | None | 0 0
  1. <div class="five wide column">
  2.   <div class="ui inverted segments">
  3.     <div class="ui blue inverted segment">
  4.       <h3 class="ui centered header">
  5.         Upload
  6.       </h3>
  7.     </div>
  8.     <div class="ui bottom attached inverted segment">
  9.       <div class="ui icon info message">
  10.         <img src="assets/img/feelsOkayMan.png" class="ui small image">
  11.         <div class="content">
  12.           <div class="header">
  13.             Heads up!
  14.           </div>
  15.           <ul class="list">
  16.             <li>Please upload the <code>.storage</code> file.</li>
  17.             <li>You can usually find this in your Rage Multiplayer Installation, Client Resources, and the Server Address.</li>
  18.             <li>The <code>.storage</code> file isn't saved on the server and will be removed once you upload.</li>
  19.           </ul>
  20.         </div>
  21.       </div>
  22.       <div class="ui action fluid input">
  23.         <!-- <input type="text" placeholder="Path To File" readonly> -->
  24.         <input id="file" type="file" #storageFile accept=".storage">
  25.         <div id="uploadChatlog" (click)="upload(storageFile)" class="ui right labeled icon green basic button">
  26.           <i class="cloud upload alternate icon"></i> Upload
  27.         </div>
  28.       </div>
  29.     </div>
  30.   </div>
  31. </div>
  32.  
  33. <div class="nine wide column">
  34.   <div class="ui segments">
  35.     <div class="ui blue inverted segment">
  36.       <h3 class="ui centered header">
  37.         Output
  38.       </h3>
  39.     </div>
  40.     <div id="chatlog" *ngIf="chatlog.length > 0" class="col-10">
  41.      
  42.     </div>
  43.     <div id="chatOutput" class="ui inverted segment">
  44.       <div *ngIf="uploading" class="ui dimmer">
  45.         <div class="content">
  46.           <h2 class="ui inverted icon header">
  47.             <i class="notched circle loading icon"></i> Awaiting your chat log upload...
  48.           </h2>
  49.         </div>
  50.       </div>
  51.       <div *ngIf="chatlog.length > 0">
  52.  
  53.         <li *ngFor="let chat of chatlog">
  54.           <div [innerHTML]="chat.text | safeHtml">
  55.           </div>
  56.         </li>
  57.       </div>
  58.     </div>
  59.     <div class="ui bottom attached inverted segment">
  60.       <div class="ui right labeled icon green basic disabled fluid button">
  61.         <i class="cloud download alternate icon"></i> Download
  62.       </div>
  63.     </div>
  64.   </div>
  65. </div>
  66.  
  67.  
  68.    
  69.  
  70. <router-outlet></router-outlet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement