Skip to content

Commit

Permalink
Merge pull request #54 from saanvi-iyer/master
Browse files Browse the repository at this point in the history
ocd
  • Loading branch information
Abh1noob authored Mar 16, 2024
2 parents 63937ba + 5ec3755 commit e6d0ad1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions devsoc24-portal-fe/src/app/edit-idea/edit-idea-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default function EditIdeaForm() {
htmlFor="project-name"
className="text-[#0019FF]"
>
Project Name
Idea Name
<span className="text-[#FF0000]">*</span>
</Label>
<Input
Expand Down Expand Up @@ -167,7 +167,7 @@ export default function EditIdeaForm() {
htmlFor="project-track"
className="text-[#0019FF] "
>
Project Track
Idea Track
<span className="text-[#FF0000]">*</span>
</Label>
<select
Expand All @@ -178,7 +178,7 @@ export default function EditIdeaForm() {
className="rounded-md border border-gray-200 p-4 focus:border-transparent focus:outline-none focus:ring-2 focus:ring-blue-600"
>
<option value="" disabled selected hidden>
Select Project Track
Select Idea Track
</option>
{tracks.map((track) => (
<option key={track} value={track}>
Expand Down Expand Up @@ -207,14 +207,14 @@ export default function EditIdeaForm() {
htmlFor="description"
className="text-[#0019FF]"
>
Description of Project
Description of Idea
<span className="text-[#FF0000]">*</span>
</Label>

<Textarea
id="description"
{...field}
placeholder="Don't forget to include your inspiration, learnings, project construction method, and difficulties you encountered in your writing. "
placeholder="Include your inspiration, brief introduction to the Problem and your proposed solution, learnings, project construction method, and difficulties you encountered in the process. "
className="col-span-12 mb-6 max-h-72 min-h-40 pl-5 text-black md:col-span-6 md:mb-0"
/>
</div>
Expand Down Expand Up @@ -315,7 +315,7 @@ export default function EditIdeaForm() {
></FormField>

<p>
Canva PPTs, Videos, Drive or Supporting Material can be shared
Canva PPTs, Videos, Drive Links or Supporting Material can be shared
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/app/edit-idea/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Page() {
</div>
<div className="absolute ml-[4.7rem] mt-[11vh] flex w-[91.9vw] flex-col bg-[#F4F5FA] pl-5 pt-5 max-[931px]:justify-center max-[445px]:ml-[3.7rem] ">
<p className="mb-4 text-4xl font-medium text-black">
Idea Updation For Devsoc24
Idea Updation For DEVSOC'24
</p>
<EditIdeaForm />
</div>
Expand Down
6 changes: 3 additions & 3 deletions devsoc24-portal-fe/src/app/edit-project/edit-subject-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export default function EditProjectForm() {
<Textarea
id="description"
{...field}
placeholder="Don't forget to include your inspiration, learnings, project construction method, and difficulties you encountered in your writing. "
placeholder="Include your inspiration, brief introduction to the Problem and your proposed solution, learnings, project construction method, and difficulties you encountered in the process. "
className="col-span-12 mb-6 max-h-72 min-h-40 pl-5 text-black md:col-span-6 md:mb-0"
/>
</div>
Expand Down Expand Up @@ -313,7 +313,7 @@ export default function EditProjectForm() {
></FormField>

<p>
Canva PPTs, Videos, Drive or Supporting Material can be shared
Canva PPTs, Videos, Drive Links or Supporting Material can be shared
</p>
</div>
</div>
Expand All @@ -325,7 +325,7 @@ export default function EditProjectForm() {
// disabled={isSubmitting}
>
<Image src={send as HTMLImageElement} alt="b" />
<span className="pl-2">Submit Idea</span>
<span className="pl-2">Submit Project</span>
</Button>
</form>
</Form>
Expand Down
2 changes: 1 addition & 1 deletion devsoc24-portal-fe/src/app/edit-project/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Page() {
</div>
<div className="absolute ml-[4.7rem] mt-[11vh] flex w-[91.9vw] flex-col bg-[#F4F5FA] pl-5 pt-5 max-[931px]:justify-center max-[445px]:ml-[3.7rem] ">
<p className="mb-4 text-4xl font-medium text-black">
Project Updation For Devsoc24
Project Updation For DEVSOC'24
</p>
<EditProjectForm />
</div>
Expand Down

0 comments on commit e6d0ad1

Please sign in to comment.