-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
28 lines (22 loc) · 923 Bytes
/
base.html
File metadata and controls
28 lines (22 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Authentication-Login & SignUp{% endblock title %}</title>
<link rel="stylesheet" href="{% static 'css/main.css' %}">
</head>
<body>
{% block body %}
<div class="Home">
<h1 class="port">Welcome to My Portfolio website</h1>
<div class="mainHome">
<h2>Thank You For Visiting</h2>
<a href="https://bablookumar7631.github.io/Portfolio_BK/" target="_blank"><button id="baseview" class="btn-home" type="submit" value="Signup">Portfolio</button></a>
<a href="{% url 'logout' %}"><button class="btn-home" id="btn-logout" type="submit" value="Signup">Logout</button></a>
</div>
</div>
{% endblock body %}
</body>
</html>