├── .DS_Store ├── README.md ├── css └── style.css ├── img ├── ayrac1.jpg ├── ico │ ├── eng.png │ └── tur.png ├── resim1.jpg ├── resim2.jpg ├── resim3.jpg ├── resim4.jpg ├── saturn.gif └── star.jpg ├── index.html └── pages ├── .DS_Store ├── database.mdb ├── galaxy.html ├── news.html ├── order.asp ├── satislar.asp ├── satislar.ldb ├── satislar.mdb ├── sign.asp └── users.mdb /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![d](https://user-images.githubusercontent.com/85408428/218445134-d55d4b5b-4325-4ed1-949e-34bef3ae80ac.png) 2 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | 2 | body 3 | { 4 | background-color: black; 5 | } 6 | 7 | a 8 | { 9 | text-decoration: none; 10 | } 11 | 12 | .menu ul 13 | { 14 | list-style-type: none; 15 | } 16 | 17 | .menu ul li 18 | { 19 | float: right; 20 | 21 | } 22 | 23 | .satislar 24 | { 25 | margin-left: 40%; 26 | } 27 | .menu ul li a 28 | { 29 | 30 | font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 31 | display: block; 32 | padding-left: 70px; 33 | width: 90px; 34 | transition: 1s; 35 | padding-right: 70px; 36 | padding-top: 1px; 37 | text-align: center; 38 | color: white; 39 | text-decoration: none; 40 | 41 | } 42 | .menu ul li a:hover 43 | { 44 | transition: 1s; 45 | cursor: pointer; 46 | color: red; 47 | 48 | } 49 | 50 | 51 | 52 | hr 53 | { 54 | opacity: 0.3; 55 | border: solid 0.1px white; 56 | 57 | } 58 | 59 | .icerik1 60 | { 61 | width: 100vw; 62 | height: 50vw; 63 | background-color: #000000; 64 | } 65 | 66 | 67 | 68 | .icerik1 span 69 | { 70 | color: white; 71 | font-size: 1.4vw; 72 | position: absolute; 73 | top: 550px; 74 | left: 45vw; 75 | border: solid 0.5px white; 76 | padding: 10px; 77 | transition: 1s; 78 | animation-duration: 3s; 79 | animation-name: slidein1; 80 | } 81 | @keyframes slidein1 { 82 | from { 83 | top: 700px; 84 | 85 | } 86 | 87 | to { 88 | top: 550px; 89 | 90 | 91 | } 92 | 93 | } 94 | 95 | .icerik1 span:hover 96 | { 97 | background-color: rgb(255, 255, 255); 98 | opacity: 1; 99 | transition: 1s; 100 | cursor: pointer; 101 | color: #000000; 102 | } 103 | 104 | h1 105 | { 106 | animation-duration: 3s; 107 | animation-name: slidein2; 108 | } 109 | 110 | @keyframes slidein2 { 111 | from { 112 | top: 60%; 113 | width: 300%; 114 | } 115 | 116 | to { 117 | top: 20vw; 118 | width: 400%; 119 | 120 | 121 | } 122 | 123 | 124 | 125 | } 126 | 127 | h2,p 128 | { 129 | animation-duration: 3s; 130 | animation-name: slidein3; 131 | 132 | 133 | } 134 | 135 | @keyframes slidein3 { 136 | from { 137 | margin-left: 16%; 138 | 139 | } 140 | 141 | to { 142 | margin-left: 0%; 143 | 144 | } 145 | 146 | 147 | } 148 | 149 | table tr { 150 | color: white; 151 | 152 | } 153 | 154 | td 155 | { 156 | padding-top: 0px; 157 | background-color: rgba(0, 0, 0, 0.281); 158 | 159 | } 160 | th 161 | { 162 | color: red; 163 | } 164 | -------------------------------------------------------------------------------- /img/ayrac1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ayrac1.jpg -------------------------------------------------------------------------------- /img/ico/eng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ico/eng.png -------------------------------------------------------------------------------- /img/ico/tur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/ico/tur.png -------------------------------------------------------------------------------- /img/resim1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim1.jpg -------------------------------------------------------------------------------- /img/resim2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim2.jpg -------------------------------------------------------------------------------- /img/resim3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim3.jpg -------------------------------------------------------------------------------- /img/resim4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/resim4.jpg -------------------------------------------------------------------------------- /img/saturn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/saturn.gif -------------------------------------------------------------------------------- /img/star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/img/star.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 24 |
25 |
26 |
27 | 28 |
29 | 30 | 31 |

Your Homeland In Space

35 | Take a look 36 |
37 | 38 | 39 |
40 |
41 |
42 |

What We Are Doing?


43 |

The space. Amazing infinity darkness.Sounds fear but into this darkness maybe some homes is waiting for us. Each Galaxy have billions stars.Why don't you have one of them? Lets make a dream to real!

If you want to buy a star what kind would you choose? a red giant? , yellow dwarf? blue or white star? Choose what ever you want it's will be your homeland in space! 44 |

45 | Our Sponsor

46 |

47 | 48 | 49 |
50 | 51 | 52 |





53 | 54 | 55 | -------------------------------------------------------------------------------- /pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/pages/.DS_Store -------------------------------------------------------------------------------- /pages/database.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/pages/database.mdb -------------------------------------------------------------------------------- /pages/galaxy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 21 | 22 |



23 |

Stellarium

Choose Your Star

24 |
25 | 26 | 27 | 28 | 29 | 30 |
31 |
32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /pages/news.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 22 | 23 |



24 | 25 | 26 | 27 |
28 |
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /pages/order.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 23 | 24 |



25 |
26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 45 | 118 | 119 | 120 | 123 | 124 | 125 |
Your Name:
Surname:
Mail:
44 | New Home 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 |
121 | 122 |
126 | 127 |
128 | 129 |
130 |
131 |
132 | <% 133 | dim conn,name,surname,mail,star,sql 134 | set conn = Server.CreateObject("ADODB.Connection") 135 | conn.Provider = "Microsoft.Jet.OLEDB.4.0" 136 | conn.open Server.MapPath("satislar.mdb") 137 | 138 | 139 | 140 | name = Request.Querystring("fname") 141 | surname = Request.Querystring ("sname") 142 | mail = Request.Querystring("email") 143 | star = Request.Querystring("stars") 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | on error resume next 155 | sql = "INSERT INTO satis(isim,soyisim,mail,yildiz) values('"&name&"' ,'"&surname&"' ,'"&mail&"' , '"&star&"')" 156 | 157 | 158 | 159 | 160 | conn.Execute(sql) 161 | 162 | 163 | 164 | 165 | %> 166 | 167 | 168 | -------------------------------------------------------------------------------- /pages/satislar.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 20 | 21 |







22 | 23 |
24 |

Yapılan Satışlar

25 | 26 | <% 27 | set conn=Server.CreateObject("ADODB.Connection") 28 | conn.Provider="Microsoft.Jet.OLEDB.4.0" 29 | conn.Open Server.MapPath("satislar.mdb") 30 | 31 | set rs=Server.CreateObject("ADODB.recordset") 32 | rs.Open "Select * from satis", conn 33 | 34 | Response.Write("") 35 | Response.Write("") 36 | for each x in rs.Fields 37 | Response.Write("") 40 | next 41 | 42 | 43 | do until rs.EOF 44 | Response.Write("") 45 | for each x in rs.Fields 46 | 47 | Response.Write("") 49 | next 50 | 51 | rs.MoveNext 52 | loop 53 | Response.Write("
") 38 | Response.Write(x.name) 39 | Response.Write("
") 48 | Response.Write(x.value & "
") 54 | 55 | rs.close 56 | conn.close 57 | 58 | %> 59 |
60 | 61 | -------------------------------------------------------------------------------- /pages/satislar.ldb: -------------------------------------------------------------------------------- 1 | DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin DESKTOP-RMD6PPK Admin -------------------------------------------------------------------------------- /pages/satislar.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/pages/satislar.mdb -------------------------------------------------------------------------------- /pages/sign.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | <% 11 | set conn=Server.CreateObject("ADODB.Connection") 12 | conn.Provider="Microsoft.Jet.OLEDB.4.0" 13 | conn.Open Server.MapPath("users.mdb") 14 | 15 | set rs=Server.CreateObject("ADODB.recordset") 16 | rs.Open "Select * from id", conn 17 | 18 | dim name2, pass2, isCorrect 19 | name2 = Request.Querystring("fname") 20 | pass2 = Request.Querystring("password") 21 | 22 | isCorrect = False 23 | %> 24 | 25 | 26 |
27 | 28 | 71 | 72 |



73 | 74 |
75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 |
<% if User <> name2 or Pass <> pass2 then Response.Write("user: emir password: 1234")%>
Username
Password
90 |
91 |
92 |
93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /pages/users.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overflow-sudo/StarStore/16d271ec3259efd543711757ff42fc4a50d905f4/pages/users.mdb --------------------------------------------------------------------------------