liuxunorg commented on a change in pull request #182: SUBMARINE-360. [WEB]
Implement the frontend of sign-up page with Angular
URL: https://github.com/apache/submarine/pull/182#discussion_r377469944
##########
File path:
submarine-workbench/workbench-web-ng/src/app/pages/user/register/register.component.ts
##########
@@ -18,14 +18,86 @@
*/
import { Component, OnInit } from '@angular/core';
+import { FormBuilder, FormControl, FormGroup, Validators } from
'@angular/forms';
+import { Router } from '@angular/router';
@Component({
selector: 'submarine-register',
templateUrl: './register.component.html',
styleUrls: ['./register.component.scss']
})
export class RegisterComponent implements OnInit {
- constructor() {}
+ validateForm: FormGroup;
+ // mock data: must be removed in the future
Review comment:
You can remind yourself by adding `TODO(kevin85421): must be removed in the
future`, all TODO will be displayed in the `TODO view` in IDEA.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]