-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
82 lines (82 loc) · 3.53 KB
/
create.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
<html>
<head>
<Title>
Project 1 Alcheringa Create
</Title>
<link rel="shortcut icon" href="https://alcherrecruit.s3.us-east-2.amazonaws.com/favicon.ico?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAZVP46HZNFDTHBYOB%2F20220611%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20220611T101705Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=489ba31e1e85b44a07cecbc1793eaadfce45e0416f4035c026fc90b3014a1e28" type="image/x-icon">
<link rel="Stylesheet" type="text/css" href="styleCreate.css">
</head>
<body>
<div id="AlcherConnect">
<img src="Alcher-Logo.jpg" id="logo" height="30px">
<span id="text1">
Alcheringa
</span>
<span id="text2">
Connect
</span>
</div>
<div id="CreateNew">
<b>Create a new post</b>
</div>
<div id="inputBox">
<div id="input">
<label for="imageInput" id="label" style="color: grey;">Image</label><br>
<input type="file" style="padding: 90px; padding-left: 110px" placeholder="Upload An Image" id="imageInput">
</div>
<div id="caption">
<label for="text" id="label1" style="color: grey;">Caption</label><br><br>
<input type="text" style="color: lightgrey;" placeholder="Give an image caption" id="textInput">
</div>
<div id="bottom">
<a href="login.html">
<button id="button">Share</button>
</a>
</div>
</div>
<div id="sidebar">
<div id="login1">
<span id="log">My Profile</span>
<span id="logout"><a href=""><img src="logout.jpg" height="20px"></a></span>
</div><br>
<div id="username-password">
<div class="imagecrop">
<img src="scenery.jpg" class="scene">
</div>
<div id="username">
<span>Username</span><br>
<span style="color: black;"><b>Person Name</b></span>
</div>
<div id="description" style="color: grey;">
This is alchering connect, a web based social media platform made to connect poeple all acrosss the world.
</div>
<div id = "MyPost">
<span>
<img src="plus.png" height="25px">
</span>
<span id="post" style="color: grey;">
<a href="MyPost.html" style="text-decoration: none; color: grey;">My Post</a>
</span>
</div><br>
<div id = "MyPost1">
<span>
<img src="bookmark.jpg" height="22px">
</span>
<span id="post1" style="color: grey;">
<a href="SavedPost.html" style="text-decoration: none; color:grey">Saved Posts</a>
</span>
</div>
</div>
</div>
<div id="side-bottom">
<div id = "MyPost2">
<span>
<img src="plus.png" height="22px">
</span>
<span id="post2" style="color: grey;">
<a href = "create.html" style="text-decoration: none; color:gray">Create New Post</a>
</span>
</div>
</div>
</body>
</html>