Skip to content

Commit 1019f88

Browse files
committed
GitHub-Actions
1 parent 7bba569 commit 1019f88

File tree

6 files changed

+71
-171
lines changed

6 files changed

+71
-171
lines changed

.github/workflows/author-assign.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
assign-author:
9-
runs-on: ubuntu-latest
9+
runs-on: self-hosted
1010
steps:
1111
- uses: toshimaru/[email protected]
1212
with:

.github/workflows/greetings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request_target, issues]
44

55
jobs:
66
greeting:
7-
runs-on: ubuntu-latest
7+
runs-on: self-hosted
88
permissions:
99
issues: write
1010
pull-requests: write

.github/workflows/label.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on: [pull_request_target]
1111
jobs:
1212
label:
1313

14-
runs-on: ubuntu-latest
14+
runs-on: self-hosted
1515
permissions:
1616
contents: read
1717
pull-requests: write

images/login.js

-87
This file was deleted.

images/logo.gif

11.7 MB
Loading

index.html

+68-81
Original file line numberDiff line numberDiff line change
@@ -55,25 +55,21 @@
5555

5656
<body>
5757
<header class="header">
58-
<a href="#" class="logo"
59-
><img src="./images/pngwing.com(5).png" alt=""
60-
/></a>
61-
<div class="fas fa-bars"></div>
62-
<nav class="navbar">
63-
<ul>
64-
<li><a href="#home">Home</a></li>
65-
<li><a href="./backend/public/index.html">Projects</a></li>
66-
<!-- <li><a href="careers.html">career</a></li> -->
67-
<li><a href="#contact">Contact</a></li>
68-
<li><a href="./backend/public/ourTeam/index.html">Our team</a></li>
69-
<button id="login" class="login">Login</button>
70-
<h3 id="name"></h3>
71-
<img id="image" onclick="ProfileClicked()" />
72-
<button onclick="logout()" id="logout" class="header-login-button">
73-
Logout
74-
</button>
75-
</ul>
76-
</nav>
58+
<a href="#" class="logo"><img src="./images/pngwing.com(5).png" style="width: 100%;" alt=""></a>
59+
<div class="fas fa-bars"></div>
60+
<nav class="navbar">
61+
<ul>
62+
<li><a href="#home">home</a></li>
63+
<li><a href="./backend/public/index.html">Projects</a></li>
64+
<!-- <li><a href="careers.html">career</a></li> -->
65+
<li><a href="#contact">contact</a></li>
66+
<li><a href="./backend/public/ourTeam/index.html">Our team</a></li>
67+
<button id="Login">Log In</button>
68+
<h3 id="name"></h3>
69+
<img id="image" onclick="ProfileClicked()" />
70+
<button onclick="logout()" id="logout">Logout</button>
71+
</ul>
72+
</nav>
7773
</header>
7874

7975
<section id="home" class="home">
@@ -91,8 +87,8 @@ <h2>B.E / BCA/ MCA / BSC-IT / etc.</h2>
9187
<div class="section-head col-sm-12" id="projects">
9288
<h1>Projects</h1>
9389
<p class="text-trans-none">
94-
We build robust and productive projects for you that help in your
95-
placements and for sharpening your learning.
90+
We build robust and productive projects for you that help in
91+
your placements and for sharpening your learning.
9692
</p>
9793
</div>
9894
<div class="col-lg-4 col-sm-6 pointerBtn">
@@ -130,10 +126,9 @@ <h6>Mobile-App Projects</h6>
130126
></span>
131127
<h6>Data Analytics Projects</h6>
132128
<p class="text-trans-none">
133-
The project will include Visualizating of Data and Rescanning.
134-
As per the Statistics and the giving space. This type of data
135-
can be seen in Big Tech Companies & the graph structure optimize
136-
the visual.
129+
The project will include Visualizating of Data and Rescanning. As per the Statistics and the giving space. This
130+
type of data can be seen in Big Tech Companies & the graph
131+
structure optimize the visual.
137132
</p>
138133
</div>
139134
</div>
@@ -181,9 +176,7 @@ <h3>Awards Received</h3>
181176

182177
<section id="contact" class="contact">
183178
<h1 class="heading">If You Have to Order Other Projects</h1>
184-
<h2 class="text-trans-none">
185-
Submit the form and Leave a Brief Description for the Team
186-
</h2>
179+
<h2 class="text-trans-none">Submit the form and Leave a Brief Description for the Team</h2>
187180
</section>
188181

189182
<!-- Contact Us Form -->
@@ -200,50 +193,46 @@ <h2 class="text-trans-none">
200193
</div>
201194
<div class="contact-form">
202195
<form action="" id="contact-form">
203-
<input
204-
type="text"
205-
name="name"
206-
placeholder="Name"
207-
id="name"
208-
class="contact-form-txt"
209-
required
210-
/>
211-
<span id="name-error" class="error"></span>
212-
<!-- Validation error message for Name -->
213-
<input
214-
type="tel"
215-
id="number"
216-
name="phone"
217-
pattern="[0-9]{10,12}"
218-
required
219-
placeholder="Contact Number"
220-
minlength="10"
221-
maxlength="12"
222-
class="contact-form-phone"
223-
/>
224-
<span id="phone-error" class="error"></span>
225-
<!-- Validation error message for Contact Number -->
226-
<input
227-
type="email"
228-
name="email"
229-
placeholder="Email"
230-
id="mail"
231-
class="contact-form-email"
232-
required
233-
/>
234-
<span id="email-error" class="error"></span>
235-
<!-- Validation error message for Email -->
236-
<textarea
237-
placeholder="Your Message"
238-
id="message"
239-
name="message"
240-
class="contact-form-txtarea"
241-
required
242-
></textarea>
243-
<span id="message-error" class="error"></span>
244-
<!-- Validation error message for Message -->
245-
<button class="contact-form-btn" id="contact_sbmt_btn">Submit</button>
246-
</form>
196+
<input
197+
type="text"
198+
name="name"
199+
placeholder="Name"
200+
id="name"
201+
class="contact-form-txt"
202+
required
203+
/>
204+
<span id="name-error" class="error"></span> <!-- Validation error message for Name -->
205+
<input
206+
type="tel"
207+
id="number"
208+
name="phone"
209+
pattern="[0-9]{10,12}"
210+
required
211+
placeholder="Contact Number"
212+
minlength="10"
213+
maxlength="12"
214+
class="contact-form-phone"
215+
/>
216+
<span id="phone-error" class="error"></span> <!-- Validation error message for Contact Number -->
217+
<input
218+
type="email"
219+
name="email"
220+
placeholder="Email"
221+
id="mail"
222+
class="contact-form-email"
223+
required
224+
/>
225+
<span id="email-error" class="error"></span> <!-- Validation error message for Email -->
226+
<textarea
227+
placeholder="Your Message"
228+
id="message"
229+
name="message"
230+
class="contact-form-txtarea"
231+
required
232+
></textarea>
233+
<span id="message-error" class="error"></span> <!-- Validation error message for Message -->
234+
<button class="contact-form-btn" id="contact_sbmt_btn">Submit</button>
235+
</form>
247236
</div>
248237
</div>
249238

@@ -321,24 +310,24 @@ <h4>Subscription</h4>
321310
<img src="./images/pngwing.com(5).png" class="logo_f" />
322311
<p class="text-trans-none">
323312
Get ready for your college project submission with PreciousServices.
324-
We provide best solutions and projects that will help you gain more
325-
knowledge. Subscribe to get latest updates.
313+
We provide best solutions and projects that will help you gain more knowledge.
314+
Subscribe to get latest updates.
326315
</p>
327316
</div>
328317
<div class="col">
329318
<h3>Office</h3>
330319
<p>Nagpur, PIN 440001</p>
331320
<p>Maharashtra, India</p>
332321
<p class="email">[email protected]</p>
322+
<h4>+91 7249545778</h4>
333323
</div>
334324
<div class="col">
335325
<h3>Useful Links</h3>
336326
<ul>
337327
<li><a href=".index.html#portfolio">Order</a></li>
338328
<!-- <li> <a href="#team">Team</a></li> -->
339-
<li><a href="careers.html">Careers</a></li>
329+
<li><a href="careers.html">careers</a></li>
340330
<li><a href="tel:7249545778">Contact</a></li>
341-
342331
<!-- <li> <a href="#faq">FAQ</a></li> -->
343332
</ul>
344333
</div>
@@ -356,14 +345,12 @@ <h3>About Us</h3>
356345
<h3>Newsletter</h3>
357346
<form>
358347
<i class="icon ion-md-mail"></i>
359-
<div class="input-wrapper">
360-
<input type="email" placeholder="Enter your e-mail id" required />
361-
<button type="submit"><i class="icon ion-md-send"></i></button>
362-
</div>
348+
<input type="email" placeholder="Enter your e-mail id" required />
349+
<button type="submit"><i class="icon ion-md-send"></i></button>
363350
</form>
364351
</div>
365352
</div>
366-
<hr />
353+
<hr>
367354
<p class="copyright">
368355
PreciousitServices &copy; 2023 - All Rights Reserved
369356
</p>

0 commit comments

Comments
 (0)