This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const verifyEmail = (username, email, link) => ` | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title>Password Reset</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="col-md-6 col-md-offset-3 well"> | |
<form novalidate (ngSubmit)="onSubmit(listing)" [formGroup]="listing"> | |
<label> | |
<span>Name</span> | |
<input type="text" formControlName="name" placeholder="Enter listing's name (if it has one)'"> | |
</label> | |
<label> | |
<span>Listing Type</span> | |
<select formControlName="type"> |