Skip to content
Permalink
6eb3472a15
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (23 sloc) 663 Bytes
import React from "react";
import { Link } from "react-router-dom";
export default class Login extends React.Component {
render() {
return (
<div>
<div className="login-form">
<div className="input-box">
<label>NetId</label>
<input type="text" placeholder="Enter Netid"></input>
</div>
<div className="input-box">
<label>Password</label>
<input type="password" placeholder="enter password"></input>
</div>
<Link to="/dashboard">
<button className="btn login">Login</button>
</Link>
</div>
</div>
);
}
}