Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 28ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login Register
abel

abel

Joined 1 year ago

All gists 2
Recently created Least recently created Recently updated Least recently updated
abel

abel / create-new.template.html

Last active 3 months ago
0 0 1
1 <div class="bg-foreground w-full">
2 <!-- HEADER -->
3 <vex-header [headerData]="headerData" [projectName]="projectNameCtrl" [showErrors]="showErrorsCtrl"
4 (submitEvent)="formSubmit()"></vex-header>
5 <!-- END HEADER -->
6 <div class="container max-w-[900px] bg-foreground">
7 <form [formGroup]="mainForm">
8 <div class="flex flex-col gap-12 mt-16">
9
10 <vex-project-details [projectDetails]="projectDetailsGroup"></vex-project-details>
abel

abel / create-new.template.ts

Last active 3 months ago
0 0 1
1 import { Component, DestroyRef, inject, OnInit } from '@angular/core';
2 import { FormBuilder, FormControl, FormGroup, FormsModule, ReactiveFormsModule, Validators } from '@angular/forms';
3 import { MatSnackBar, MatSnackBarModule } from '@angular/material/snack-bar';
4 import { MatCheckboxModule } from '@angular/material/checkbox';
5 import { MatOptionModule } from '@angular/material/core';
6 import { MatSelectModule } from '@angular/material/select';
7 import { MatInputModule } from '@angular/material/input';
8 import { MatFormFieldModule } from '@angular/material/form-field';
9 import { MatIconModule } from '@angular/material/icon';
10 import { MatButtonModule } from '@angular/material/button';