-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
final changes before depoloy to test
- Loading branch information
Ian
committed
Dec 7, 2023
1 parent
f81c846
commit abab6a6
Showing
14 changed files
with
178 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?php | ||
$url = $_SERVER["HTTP_ORIGIN"]."/app/webtexting/"; | ||
header("Location: ".$url); | ||
?> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<script lang="js"> | ||
import SendBox from './SendBox/SendBox.vue'; | ||
export default { | ||
name: 'NewMessage', | ||
components: { SendBox }, | ||
props:{ | ||
ownNumber: String | ||
}, | ||
data() { | ||
return { | ||
number: '', | ||
} | ||
} | ||
} | ||
</script> | ||
<template> | ||
<div id="NEW_MESSAGE"> | ||
<div class="thread-header"> | ||
<a class="back-link" href="/app/webtexting" aria="Go Back to threadlist!">←</a> | ||
<p>New Conversation</p> | ||
</div> | ||
<span class='new-thread-message'>Enter Number: | ||
<input type="text" v-model="number" id="new-thread-number" placeholder="(206) 555-1212" /> | ||
</span> | ||
<SendBox :remoteNumber="number" :ownNumber="ownNumber" /> | ||
</div> | ||
</template> | ||
|
||
<style> | ||
#NEW_MESSAGE { | ||
grid-column-start: 2; | ||
grid-column-end: 2; | ||
height: 83vh; | ||
} | ||
@media screen and (width <=700px) { | ||
#NEW_MESSAGE { | ||
z-index: 5; | ||
grid-column-start: 1; | ||
grid-column-end: 1; | ||
height:94vh; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.