mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
21fc93bf4b
Use zone from npm for modules testing PR Close #61947
19 lines
410 B
HTML
19 lines
410 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Template Driven Forms</title>
|
|
<style>
|
|
.ng-touched.ng-invalid {
|
|
border-color: red;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<template-driven-forms> Loading... </template-driven-forms>
|
|
|
|
<script src="/angular/modules/node_modules/zone.js/bundles/zone.umd.js"></script>
|
|
<script type="module" src="/app_bundle.js"></script>
|
|
</body>
|
|
</html>
|