├── README.md ├── dasboard.php ├── dashboard.html ├── index.html ├── login.html ├── login.php ├── registration.html └── registration.php /README.md: -------------------------------------------------------------------------------- 1 | Transaction-management-system 2 | -------------------------------------------------------------------------------- /dasboard.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 |
10 | connect_error){ 31 | die("Registration failed:".$conn->connect_error); 32 | } 33 | else{ 34 | echo"Registred Sucessfully!!!"; 35 | } 36 | 37 | 38 | // Here we want to give as per in the database table... 39 | $stmt = $conn->prepare("INSERT INTO unstoppable.dashboard(title,accountnumber,IFSCcode,amount,date,description) VALUES(?,?,?,?,?,?)"); 40 | 41 | 42 | // Here we want to give trhe variable name as per in the above POST Method.... 43 | $stmt->bind_param("sssiis",$title,$accountnumber,$IFSCcode,$amount,$date,$description); 44 | 45 | if($stmt->execute() ==TRUE){ 46 | echo"DB Updated Sucessfuly!"; 47 | header("Location: dashboard.php"); 48 | exit(); 49 | 50 | 51 | } 52 | else{ 53 | echo"FAILED".$stmt->error; 54 | } 55 | 56 | 57 | ?>
58 | 59 | -------------------------------------------------------------------------------- /dashboard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 96 | 97 | 98 |
99 |
100 |


101 |

TRANSACTION MANAGEMENT

102 |



103 | 104 | 108 | 109 | 112 | 113 | 114 |
115 |

Pay using Credit or Debit card or UPI



116 | 117 |
118 | 119 | 122 |

123 |
129 | 130 |
131 | 132 | 135 |
136 |
137 |
138 | 139 | 142 |

143 | 144 |
145 | 146 | 149 |

150 |
151 | 152 | 155 |
156 | 160 |
161 | 162 | 163 | 164 |
165 |
166 | 167 | 168 | 169 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 𝕿𝖗𝖆𝖓𝖘𝖆𝖈𝖙𝖎𝖔𝖓 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙 7 | 71 | 72 | 73 | 74 |
75 |

𝕿𝖗𝖆𝖓𝖘𝖆𝖈𝖙𝖎𝖔𝖓 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙

76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | 85 | 86 |
87 |
88 | 89 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Login Form 9 | 10 | 13 | 14 | 178 | 179 | 180 |
181 |

𝓛𝓞𝓖𝓘𝓝

182 |
183 |
184 | 185 |
186 | 188 |
189 |
190 |
191 |
192 | 193 |
194 | 196 |
197 |
198 |
199 | 200 | 201 | 202 |
203 | 204 | 205 | 206 |

Not registered? Create an account

207 |
208 | 209 |
210 |
211 | 212 | 213 | -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | connect_error) 18 | { 19 | die("connection failed:" . $conn->connect_error); 20 | } 21 | else 22 | { 23 | echo "Connection successful!!!
"; 24 | } 25 | $stmt = $conn->prepare ("SELECT * FROM tech.info WHERE username=? and password=?"); 26 | $stmt->bind_param("ss",$username,$password); 27 | if($stmt->execute()== TRUE){ 28 | $res = $stmt->get_result(); 29 | if($res->num_rows>0){ 30 | echo "Successful
"; 31 | header("Location:dashboard.html"); 32 | exit(); 33 | } 34 | else{ 35 | echo "No user found
"; 36 | 37 | 38 | 39 | 40 | } 41 | } else 42 | { 43 | echo "Insert failed:" . $stmt->error; 44 | 45 | } 46 | 47 | 48 | ?> 49 | 50 | 51 | -------------------------------------------------------------------------------- /registration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Login Form 9 | 10 | 13 | 14 | 178 | 179 | 180 |
181 |

SignUp

182 |
183 |
184 | 185 |
186 | 188 |
189 |
190 |
191 |
192 | 193 |
194 | 196 |
197 |
198 |
199 |
200 | 201 |
202 | 204 |
205 |
206 |
207 | 208 | 209 | 210 |
211 | 212 | 213 | 214 |

Already have an account

215 |
216 | 217 |
218 |
219 | 220 | 221 | -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | connect_error) 22 | { 23 | die("connection failed:" . $conn->connect_error); 24 | } 25 | else 26 | { 27 | echo "Connection successful!!!
"; 28 | } 29 | $stmt = $conn->prepare("INSERT INTO tech.info (username,password,email) VALUES (?,?,?)"); 30 | $stmt->bind_param("sss",$username,$password,$email); 31 | if($stmt->execute()==TRUE){ 32 | echo "Success!!!!!
"; 33 | header("Location:dashboard.html"); 34 | exit(); 35 | }else{ 36 | echo "Insert failed:" . $stmt->error; 37 | } 38 | ?> 39 | 40 | --------------------------------------------------------------------------------