(Created page with "<div class="report-card"> <div class="img-container"> <img class="comp-img" src="{{{companyImageUrl}}}" alt="" /> </div> <div class="card-body"> <div class="card-title"> <div style="display: flex; align-items: center; justify-content: center"> <div class="logo-container"> <img src="{{{companyLogoUrl}}}" class="logo zoom" alt="logo" /> </div> <div style="vertical-align: middle; margin: auto; flex: 5"> <b>{{ r...")
 
No edit summary
Line 10: Line 10:
         </div>
         </div>
         <div style="vertical-align: middle; margin: auto; flex: 5">
         <div style="vertical-align: middle; margin: auto; flex: 5">
           <b>{{ report.startupName }}</b
           <b>{{{startupName}}}</b
           ><br />
           ><br />
           <span style="color: gray">{{{slogan}}}</span>
           <span style="color: gray">{{{slogan}}}</span>
Line 28: Line 28:
     "
     "
   >
   >
     <button
     <a><b>Learn More</b></a>
      *ngIf="mode == 'investor'"
      type="button"
      class="learn-more"
      (click)="openReportPreview(report)"
    >
      <b>Learn More</b>
    </button>
 
    <div *ngIf="mode == 'fundraiser'">
      <div
        style="
          display: flex;
          background-color: lightgray;
          justify-content: space-evenly;
        "
      >
        <button
          type="button"
          class="view-more"
          (click)="openReportPreview(report)"
        >
          ⛶ View More
        </button>
        <button type="button" class="edit" (click)="openEditReport(report)">
          🖉 Edit
        </button>
      </div>
    </div>
   </div>
   </div>
</div>
</div>

Revision as of 08:39, 18 July 2023

   <img class="comp-img" src="{{{companyImageUrl}}}" alt="" />
         <img src="{{{companyLogoUrl}}}" class="logo zoom" alt="logo" />
         {{{startupName}}}
{{{slogan}}}
     
     {{{summary}}}
   <a>Learn More</a>