I'm looking for a way to store reactive forms data in local storage and then access that data on another page.
<form [formGroup]="testform" >
firstname:
<input type="text" formControlName="fname"><br>
lastname:
<input type="text" formControlName="lname">
<button type="submit" (click)="Submit(testform)">Submit</button>
</form>
If anyone has any insights into this issue, it would be greatly appreciated. Thank you.