Skip to content

Commit c9e04fe

Browse files
Matches Updated
1 parent 0d136a3 commit c9e04fe

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

frontend/src/Pages/Matches.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
.w-100 {
22
width: 100% !important;
33
height: 75vh;
4+
}
5+
.MatchingTitle{
6+
font-size: 2.3rem;
7+
color: #fff;
8+
49
}

frontend/src/Pages/Moreinfo.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import '../components/Login.css';
44
import './Moreinfo.css';
55
import ReactDOM from "react-dom";
66

7+
78
function Moreinfo() {
89
const [email, setEmail] = useState("");
910
const [password, setPassword] = useState("");
@@ -27,6 +28,7 @@ function Moreinfo() {
2728
reader.readAsDataURL(file);
2829
}
2930
};
31+
//Redirecting to another page after submitting
3032

3133
return (
3234
<>
@@ -35,7 +37,7 @@ function Moreinfo() {
3537
</div>
3638

3739
<div className="container MoreInfoProfile">
38-
<form method=" ">
40+
<form method=" " onSubmit={this.submitForm.bind(this)}>
3941
<div className="row">
4042
<div className="col-md-4 mt-4 mb-3 mx-3 img-div">
4143
<input type="file" accept="image/*" onChange={handleImageUpload} ref={imageUploader} style={{ display: "none" }} />
@@ -79,15 +81,15 @@ function Moreinfo() {
7981
</div>
8082

8183
<div className="col-14 mb-4 ">
82-
<button type="submit" className="btn btn-dark btn-default">Submit</button>
84+
<button type="submit" className="btn btn-dark btn-default">Submit</button>
8385
</div>
8486

8587
</div>
8688
</div>
8789
</div>
8890
</form>
8991
</div>
90-
92+
9193
<div className="footer">
9294
<div className="row">
9395
<div className="footer col-lg-6">

0 commit comments

Comments
 (0)