Skip to content

Commit 5b83b88

Browse files
committed
added the logo
1 parent 49aa9c6 commit 5b83b88

1 file changed

Lines changed: 17 additions & 51 deletions

File tree

Lines changed: 17 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,24 @@
11
{% extends "base.html" %}
2-
{% block title %}Welcome - FileFlow{% endblock %}
2+
{% block title %}Home{% endblock %}
33

44
{% block content %}
5-
<div class="welcome-page">
6-
<!-- College Header -->
7-
<div class="college-header">
8-
<div class="college-header-content">
9-
<p class="college-name">Karmaveer Punjababa Goverdhane<br>Arts, Commerce and Science College</p>
10-
<p class="department">DEPARTMENT OF COMPUTER SCIENCE</p>
5+
<div class="home-container">
6+
<img src="{{ url_for('static', filename='mvp-logo.png') }}" alt="FileFlow Logo" style="max-width: 150px; margin-bottom: 2rem;">
7+
8+
<p style="font-size: 1.1rem; margin-bottom: 1rem; font-weight: bold;">Karmaveer Punjababa Goverdhane Arts, Commerce and Science College</p>
9+
<p style="font-size: 1rem; margin-bottom: 2rem;">DEPARTMENT OF COMPUTER SCIENCE</p>
10+
11+
<h1>FileFlow: Cloud File Manager</h1>
12+
13+
{% if not current_user.is_authenticated %}
14+
<div class="auth-buttons">
15+
<a href="{{ url_for('auth_bp.login') }}" class="btn">Login</a>
16+
<a href="{{ url_for('auth_bp.signup') }}" class="btn">Sign Up</a>
1117
</div>
12-
</div>
13-
14-
<!-- Project Section -->
15-
<div class="project-section">
16-
<!-- Logo -->
17-
<div class="project-logo">
18-
<img src="{{ url_for('static', filename='mvp-logo.png') }}" alt="FileFlow Logo">
19-
</div>
20-
21-
<!-- Project Title -->
22-
<h1 class="project-title">FileFlow: Cloud File Manager</h1>
23-
24-
<!-- Project Info -->
25-
<div class="project-info">
26-
<p class="course-code">CS-281-FP</p>
27-
<p class="project-type">MINI PROJECT REPORT</p>
28-
<p class="academic-year">Project Academic Year (2025 - 2026)</p>
29-
</div>
30-
31-
<!-- Project Details -->
32-
<div class="project-details">
33-
<div class="detail-section">
34-
<h3>PROJECT GUIDE</h3>
35-
<p>Prof. Miss. Bhagyashree N. Sonar</p>
36-
</div>
37-
<div class="detail-section">
38-
<h3>SUBMITTED BY</h3>
39-
<p>Divekar Amit Eknath</p>
40-
</div>
41-
</div>
42-
43-
<!-- Action Buttons -->
44-
<div class="welcome-actions">
45-
{% if not current_user.is_authenticated %}
46-
<div class="auth-buttons">
47-
<a href="{{ url_for('auth_bp.login') }}" class="btn btn-primary">Login</a>
48-
<a href="{{ url_for('auth_bp.signup') }}" class="btn btn-secondary">Sign Up</a>
49-
</div>
50-
{% else %}
51-
<div class="dashboard-link">
52-
<a href="{{ url_for('folders_bp.dashboard') }}" class="btn btn-primary">Go to Dashboard</a>
53-
</div>
54-
{% endif %}
18+
{% else %}
19+
<div class="dashboard-link">
20+
<a href="{{ url_for('folders_bp.dashboard') }}" class="btn">Go to Dashboard</a>
5521
</div>
56-
</div>
22+
{% endif %}
5723
</div>
5824
{% endblock %}

0 commit comments

Comments
 (0)