Angular template to show the country list

Finally, we need an HTML template to render the country data on the screen. Each Angular component has one HTML template associated with a @Component decorator. For our first screen to show the list of countries, the HTML template looks as follows:

<form name="searchCountriesForm" novalidate (ngSubmit)="searchCountries()">    <div class="container mb-5">        <div class="row">            <div class="col-6">                <label class="form-control-label"                 jhiTranslate="gdpApp.country.name" for="nameFilter">Name</label>                 <input type="text" class="form-control"                 name="nameFilter" id="nameFilter" [(ngModel)]="nameFilter" maxlength="52"/>            </div>            <div class="col-4"> <label class="form-control-label" jhiTranslate="gdpApp.country.continent" ...

Get Spring 5.0 Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.