Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #1388

Merged
merged 3 commits into from
Jun 27, 2022
Merged

Develop #1388

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
</div>

<div>
<div class="row g-3 align-items-center w-100 mt-4" >
<div class="row g-3 align-items-center w-100 mt-4" v-if="!prize">
<div class="text-left col-lg-3 col-md-3 text-left">
<label for="type" class="col-form-label"
>Type<span style="color: red">*</span>:
Expand Down
2 changes: 1 addition & 1 deletion src/components/participant/Action.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default {
}
let headers = {
"Content-Type": "application/json",
Authorization: `Bearer ${this.authToken}`,
Authorization: `Bearer ${localStorage.getItem("authToken")}`,
"sig-ts":ts,
"x-payload-hf-sign":sig

Expand Down
45 changes: 18 additions & 27 deletions src/views/Invitation.vue
Original file line number Diff line number Diff line change
@@ -1,36 +1,22 @@
<template>
<div class="body">
<div class="row header">
<div class="col-md-4">
</div>
<!-- <div class="col-md-8">
<button class="btn btn-default btn-lg">
<a href="/app" target="_blank">Try Now</a>
</button>
</div> -->
</div>
<div class="row content">
<div class="col-md-12">
<img class="align-center" style="margin-bottom: 20px" width="auto" height="auto"
src="../assets/Fyre_Gold_Black.png" />
<div class="typewriter">
<h4>Viral Marketing Tools For Web3</h4>
</div>
<button class="btn btn-default btn-lg" style="margin-top:2%">
<img class="align-center" style="margin-bottom: 20px; height: 80px" width="auto" height="auto"
src="../assets/Fyre_Gold_Black.png"/>
<!-- <div>
<h4>
</h4>
</div> -->
<p>
You can close this tab now and go back to the Fyre <a href="/app" target="_blank">admin
dashboard</a>
</p>
<!-- <button class="btn btn-default btn-lg" style="margin-top:2%">
<a href="/app" target="_blank">Click here to Login to admin dashboard</a>
</button>
</button> -->
</div>
</div>
<!-- <div class="row footer">
<div class="col-md-4">
<span>Powered By</span>
<img
:src="require(`../assets/footerLogo.png`)"
style="max-width: 100px;"
/>
</div>
<div class="col-md-8"></div>
</div> -->
</div>
</template>
<script>
Expand Down Expand Up @@ -85,6 +71,11 @@ methods:{
to { width: 40% }
}

a {
color: black;
text-decoration: underline;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
Expand All @@ -93,7 +84,7 @@ methods:{


.body{
background: whitesmoke;
background: whitesmoke;;
color: black;
height: 100%;
top: 0px;
Expand Down