This project is being primariliy focsing on the work reuqest management in IIT Dharwad. A platform to seamlessy let the users push their issues to the required authorities. It will act as medium between the users and the responsible authorites in IIT Dharwad.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Gist Created By Saksham ChhimwalAt 1668695778 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<bits/stdc++.h> | |
using namespace std; | |
int solve(){ | |
int n,m; | |
cin>>n; | |
cin>>m; | |
int sum=0; | |
for(int i=0;i<m;i++){ | |
int a,b; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Location: app/(login)/login/page.tsx | |
"use client" | |
import { useState } from "react" | |
import LoginLayout from "./layout"; | |
export default function Page() { | |
const [name, setName] = useState("") | |
const [date, setDate] = useState(Date.now().toString()); | |
const [secs, setSecs] = useState(0); |
OlderNewer